﻿
/********************************************************************************
將網頁導向指定的網址。
    url : 指定的網址。
********************************************************************************/
function Redirect(url)
{
    document.location = url;
}

/********************************************************************************
Pop-Up 視窗。
    url : 指定的網址。
    name : 指定的視窗名稱。
    width : 指定的寛。
    height : 指定的高。
********************************************************************************/
function WindowOpen(url, name, width, height)
{
    if(width == undefined) { width = 720;}
    if(height == undefined) { height = 500;}
    window.open(url, name, 'height=' + height + ',width=' + width + ',status=yes,scrollbars=yes,resizable=yes,toolbar=no,menubar=no,location=no', true);
}

function DoClick(clientId)
{
    var o = document.getElementById(clientId); 
    if( document.all && typeof( document.all ) == "object" )
    { 
        o.click(); 
    } 
    else 
    { 
        var e = document.createEvent('MouseEvents'); 
        e.initEvent('click',true,true); 
        o.dispatchEvent(e); 
    }
}
