<!--
	var ProdDesc = null;
	var ProdCust = null;
	
	//find center of screen
	ScreenWidth = screen.width;
	ScreenHeight = screen.height;
	
	
	//for category pages to launch
	function descriptionPage(ProdID){
		WindowX = (ScreenWidth/2)-250;
		WindowY = (ScreenHeight/2)-287;
		
		URL = "../product-descriptions/product-descriptions.asp?ProdID=" + ProdID + "&parentPage=Category"
		ProdDesc = window.open(URL, 'ProdDesc', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=1,width=510,height=615,left='+WindowX+',top='+WindowY);
	}
	
	//for the shopping cart to launch
	function descriptionPage2(ProdID){
		WindowX = (ScreenWidth/2)-250;
		WindowY = (ScreenHeight/2)-287;
		
		URL = "product-descriptions/product-descriptions.asp?ProdID=" + ProdID + "&parentPage=ShoppingCart"
		ProdDesc = window.open(URL, 'ProdDesc', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=1,width=510,height=615,left='+WindowX+',top='+WindowY);
	}
	
	//for product index, or what's new to launch
	function descriptionPage3(ProdID){
		WindowX = (ScreenWidth/2)-250;
		WindowY = (ScreenHeight/2)-287;
		
		URL = "product-descriptions/product-descriptions.asp?ProdID=" + ProdID + "&parentPage=Misc"
		ProdDesc = window.open(URL, 'ProdDesc', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=1,width=510,height=615,left='+WindowX+',top='+WindowY);
	}
	
	function customizePage(ProdID){
		WindowX = (ScreenWidth/2)-188;
		WindowY = (ScreenHeight/2)-263;
		
		URL = "product-customization/custom.asp?ProdID=" + ProdID
		ProdCust = window.open(URL, 'ProdCust', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=1,width=375,height=560,left='+WindowX+',top='+WindowY);
	}
	
	function directMailRules(){
		WindowX = (ScreenWidth/2)-188;
		WindowY = (ScreenHeight/2)-240;
		
		URL = "rules.asp"
		Rules = window.open(URL, 'Rules', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=1,width=375,height=480,left='+WindowX+',top='+WindowY);
	}
	
	function rentalRules(){
		WindowX = (ScreenWidth/2)-300;
		WindowY = (ScreenHeight/2)-205;
		
		URL = "rules.asp"
		Rules = window.open(URL, 'Rules', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=410,left='+WindowX+',top='+WindowY);
	}
//-->