<!--

var intUrlVal ;              
// only for value = 3 means page is in the same site, no pop-up
// set intUrlLoc to -1 as default so that pop up appears.
intUrlLoc = -1 ; 

function fncUrlVal(intVal)
{
	intUrlLoc = intVal ;
}

function fncOpenPopup()
{
	//alert('intUrl = ' + intUrlLoc)
	if (intUrlLoc != 3)
	{
		window.open("exitpop.aspx","ePopUp","width=300,height=450,scrollbars=no,menubar=no,location=no,resizable=yes,status=no")             
		//window.open(strurl, "smallwin","width=" + width + ",height=" + height + ",status=no,resizable=no,scrollbars=no,menubar=no,status=no");
	}
}

function fncOpenWebsticker(intPopUp)
{
	if (intPopUp == 1) 
		window.open("websticker_1.html","HTMLCode","width=425,height=120,scrollbars=no,menubar=no,location=no,resizable=no,status=no")             
	
	if (intPopUp == 2)
		window.open("websticker_2.html","HTMLCode","width=425,height=120,scrollbars=no,menubar=no,location=no,resizable=no,status=no")             
		
		//window.open(strurl, "smallwin","width=" + width + ",height=" + height + ",status=no,resizable=no,scrollbars=no,menubar=no,status=no");
	
}

function fncOpenBio(bioName)
{
	 
	 var strURL
	 strURL = "bio.aspx?bio=" + bioName;
	 
	 window.open(strURL,"BIO","width=410,height=300,scrollbars=yes,menubar=no,location=no,resizable=no,status=no")             
	
		//window.open(strurl, "smallwin","width=" + width + ",height=" + height + ",status=no,resizable=no,scrollbars=no,menubar=no,status=no");
	
}

window.onunload = function(){fncOpenPopup()};

//-->


