/**** Pop Up Script ****/
function windowOpen(name,width,height) {
    myWindow = window.open(name, "win", "width=" + width + ", height=" + height + ", top=0, left=0, screenX=0, screenY=0, scrollbars=yes, resizable=yes");
}

/**** Third Party Link Pop Up ****/
function ThirdPartyLink(wt,link3) {
	window.open(wt, 'webtrend', 'height=1,width=1,status=no,toolbar=no,menubar=no,location=no,top=2000,left=2000');
	link3 = window.open(link3,"_blank","height=600,width=800,status=yes,toolbar=yes,menubar=yes,location=yes,top=0,left=0");
	link3.focus();
}