asked on
<script language="JavaScript">
var GsChildWin;
function ABCD_JSopenUrl( sUrl, iWidth, iHeight, sParamaters )
{
if ( GsChildWin ) { GsChildWin.close(); }
if ( sParamaters ) { sParamaters = sParamaters + "," };
GsChildWin = window.open( sUrl, '', sParamaters + "width=" + iWidth + ",height=" + iHeight + ", top=" + ( ( screen.availheight - iHeight ) / 2 ) + ", left=" + ( ( screen.availwidth - iWidth ) / 2 ) );
}
function ABCD_ApplyOnline( sPageName, iWidth, iHeight, sParameters )
{
ABCD_JSopenUrl(getURL( sPageName ), iWidth, iHeight, sParameters );
dcsMultiTrack('DCS.dcsuri','/CTA','WT.ti','CTA: Apply Online', 'WT.z_cta', 'Apply Online');
}
</script>