<!--
var PageUpdated = ""; // declare in case unused

var isIE;
if (navigator.appName == "Microsoft Internet Explorer") {
			if (parseInt(navigator.appVersion) >= 4) {
			isIE = true;
			document.write("<LINK REL='STYLESHEET' HREF='/NASD_Framework/Global_Resources/MasterPages/found/CSS/ie.css'>");
			}
}
else {
			isIE = false;
			document.write("<LINK REL='STYLESHEET' HREF='/NASD_Framework/Global_Resources/MasterPages/found/CSS/others.css'>");
}

//THIS FUNCTIN SETS THE REQUIRED BOTTOM PADDING BASED ON THE SCREEN RESOLUTION. THIS IS REQUIRED TO ELIMINATE GREEN SPACE BELOW THE CONTENT AREA.
function SetBtmPdng(menutype){
	// browser sniffer
	var NN, IE, dynNN, dynIE
	var collection = "";
	var objStyle = "";
	var agent = navigator.appName + navigator.appVersion;
   
	NN = ( (agent.indexOf("Netscape") > -1 ) ? 1 : 0);
	IE = ( (agent.indexOf("Explorer" )> -1 || agent.indexOf("MSIE") > -1 ) ? 1 : 0);

	if (parseInt(navigator.appVersion) >= 4){
		if (navigator.appName == "Netscape"){
			dynNN = true;
			}
		else{
			dynIE = true;
			collection = "all."
			objStyle = ".style"
			}
		}

	var ScreenHeight;
	var thisBottomMarker;
	var thisAdjustFactor;
	var thisBottomPad;

	if (menutype == "NoMenu"){
		thisAdjustFactor = 140;
	}else{
		thisAdjustFactor = 100;
	}

	// return available content height space in browser
	if (dynNN){
		ScreenHeight = window.innerHeight;
		thisBottomMarker = 500;
		thisBottomPad = Math.abs(ScreenHeight - thisBottomMarker - thisAdjustFactor);
		//document.FoundationPad.height = thisBottomPad;
		//alert(document.FoundationPad.height)
		}
	else{
		ScreenHeight = document.body.clientHeight;
		thisBottomMarker = BottomMarker.offsetTop;
		thisBottomPad = (ScreenHeight - thisBottomMarker - thisAdjustFactor);
		FoundationPad.height = thisBottomPad;
		}

	//alert("BottomMarker.offsetTop: "+thisBottomMarker + "   ScreenHeight: " + ScreenHeight + "  BottomPad: " + thisBottomPad )

}



		function email(mailID, displayName){
			var newUrl = "";
			newUrl += "http://apps." + DomainCoName + "/EmailMask/EmailMask.aspx?";
			newUrl += "&id=" + mailID;
			newUrl += "&displayName=" + encodeURI(displayName);
			window.open(newUrl,'mail','menubar=0,location=0,titlebar=0,status=0,toolbar=0,resizable=1,width=600,height=500');
		}




//-->