// Generic pop up script. The following will have to be modified depending on 
// your needs:
// 		top, left, screenx, screeny, width, height, innerWidth, innerHeight

function productWindow(theUrl)
{
		window.open (theUrl,'product','width=465,height=400,innerWidth=465,innerHeight=400,left=140,top=130,screenx=140,screeny=130,status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=no');
		
}		

function conditionWindow(theUrl)
{
		window.open (theUrl,'condition','width=470,height=400,innerWidth=465,innerHeight=400,left=140,top=130,screenx=140,screeny=130,status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=no');
		
}

function diabeticWindow(theUrl)
{
		window.open (theUrl,'diabetic','width=465,height=400,innerWidth=465,innerHeight=400,left=140,top=130,screenx=140,screeny=130,status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=no');
		
}	

function retailWindow(theUrl)
{
		window.open (theUrl,'retail','width=470,height=400,innerWidth=470,innerHeight=400,left=140,top=130,screenx=140,screeny=130,status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=no');
		
}	

function instWindow(theUrl)
{
		window.open (theUrl,'inst','width=560,height=495,innerWidth=560,innerHeight=495,left=10,top=10,screenx=10,screeny=10,status=no,toolbar=yes,location=no,menubar=no,scrollbars=yes,resizable=no');
		
}

// function to launch the coupon minisite
function openPopup()
{
	heightOffSet = 80;
	widthOffSet = 145;
	winLocX = screen.width/2 - 550/2 - widthOffSet;
	winLocY = screen.height/2 - 375/2 - heightOffSet;
	var popup_win = window.open('../../mini_site/scholl.cfm?from=homepage','mswin','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,menu=no,width=710,height=500,screenx='+winLocX+',screeny='+winLocY+',left='+winLocX+',top='+winLocY);
	popup_win.focus();
}
	
