var cor_ads_res=new Array();
//Setting the fin info values
cor_ads_res["title"]="Wing Hang eBanking";
cor_ads_res["titlep"]="Personal eBanking Login";
cor_ads_res["titleb"]="Business eBanking Login";
cor_ads_res["login"]="Login";

var isNS = (document.layers) ? true : false;
function PerLogin() {
    if (isNS)
        pos = 'screenX=0,screenY=0';
    else
       	pos = 'left=0,top=0';
    var h = screen.availHeight-50;
    var w = screen.availWidth-10;
    var s = 'width=' + w + ',height=' + h + ',resizable=yes,' + pos + ',status=yes';
    // alert(s);
    open('https://ebanking.whbhk.com/personal/0830.do', 'front', s);
}

function BusLogin() {
    if (isNS)
       	pos = 'screenX=0,screenY=0';
    else
        pos = 'left=0,top=0';
    var h = screen.availHeight-50;
    var w = screen.availWidth-10;
    var s = 'width=' + w + ',height=' + h + ',resizable=yes,' + pos + ',status=yes';
    // alert(s);
    open('https://ebanking.whbhk.com/corp/0830.do', 'front', s);
}

function OpenLogin() {
    if ( document.ebankingForm.radiobutton[0].checked ) {
       	PerLogin()
    }
    else if ( document.ebankingForm.radiobutton[1].checked ) {
        BusLogin()
    }
}
