function OpenLinkWinNormal(sURL, sTargetWin, sParam)
{
	window.open(sURL, sTargetWin, sParam, false)
}

function OpenLinkWindow(sURL, sTargetWin, sParam)
{
	if (sParam=='') {
		sParam = 'left=10,top=100,width=770,height=450,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes'
	}
	window.open(sURL, sTargetWin, sParam, false)
}

function OpenWinCliForgetPwd(vsURL)
{
	var scrWidth=screen.width, scrHeight=screen.height, nLeft, nTop

	nLeft = (scrWidth - 410) /2
	nTop = (scrHeight - 220) /2
	if (vsURL == '') {
		vsURL = 'http://www.itradecimb.com/bin/cliForgetPwd.asp'
	}
	window.open(vsURL, 'winCliPwdPIN', 'left='+ nLeft +',top='+ nTop +',width=410,height=220,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=no', false)
}

function OpenWinCliReg(vsType)
{
	var scrWidth=screen.width, scrHeight=screen.height, nLeft, nTop

	nLeft = (scrWidth - 795) /2
	nTop = (scrHeight - 500) /2
	if (vsType == "C") {
		window.open('/bin/cliTermCond.asp?Type=C', 'winCliReg', 'left='+ nLeft +',top='+ nTop +',width=795,height=500,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes', false)
	} else {
		window.open('http://www.itradecimb.com/bin/cliTermCond.asp', 'winCliReg', 'left='+ nLeft +',top='+ nTop +',width=795,height=500,location=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes', false)
	}
}