
function pop(product_code,prod_name)
{		
	window.name='main';
	leftandtop='left='+((window.screen.availWidth-50)/2)+',top='+((window.screen.availHeight-50)/2);
	heightandwidth='width=50,height=50';
	popupwin=window.open('/HanoverCommon/Availability/ProductAvailability.aspx?product_code=' + product_code + '&div=54&pname=' + prod_name  ,'popupwin'+product_code,heightandwidth+',scrollbars=no,status=no,toolbars=no,' + leftandtop+',resizable=no,menubar=no');
	popupwin.focus();
}	

function popBanner()
{
	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)){
		popupwin=window.open('PopUp_Banner.asp?expire='+expire+'&prod='+prod,'popupwin'+prod,heightandwidth+',scrollbars=no,status=no,toolbars=no,'+leftandtop+',resizable=no,menubar=no');
		popupwin.focus();
		document.cookie=pagename+"POPUP="+"; path=/; expires="+thisdate.toGMTString()
	}
}	
