function pop()
{
	var popupwin;
	window.name='main'; 
	thisdate = new Date();
	mmddyyyy = thisdate.getMonth()+'.'+thisdate.getDate()+'.'+thisdate.getYear();
	thisdate.setDate(thisdate.getDate()+Math.abs(expire));
	heightandwidth='width=300,height=126';
	leftandtop='left=0,top='+(window.screen.availHeight-151);
	if ((document.cookie.indexOf('MSCSProfile') != -1) && (document.cookie.indexOf(pagename+"POPUP") == -1)){
		window.open('PopUp_Banner.asp?expire='+expire+'&prod='+prod,'popupwin'+prod,heightandwidth+',scrollbars=no,status=no,toolbars=no,'+leftandtop+',resizable=no,menubar=no');
		//window.focus();
		document.cookie=pagename+"POPUP="+"; path=/; expires="+thisdate.toGMTString()
	}
}

