<!--/////////////////////////////GLOBAL FUNCTIONS////////////////////////////////////-->

// Opens the footer links, or any external links outside the popup
function targetopener(mylink, closeme, closeonly)
{
	if (! (window.focus && window.opener))return true;
		window.opener.focus();
	if (! closeonly)window.opener.location.href=mylink.href;
	if (closeme)window.close();
	return false;
}

<!-- Window Pop-Up -->
function popUp(sUrl , iWidth , iHeight , bScrollBars)
{
	sPageName = "OICSPopUp"
	window.open(sUrl , sPageName , "status=1,scrollbars=" + bScrollBars + ",width=" + iWidth + ",height=" + iHeight + ",resizable=yes");
}

<!--/////////////////////////////NAV////////////////////////////////////-->

<!-- Browser Sniffer -->
NS6=((parseInt(navigator.appVersion)>=5)&&(navigator.appName.indexOf("Netscape")!=-1))?1:0;
