﻿//product details print
function popupProductDetailsPrint(productID) {
	var productDetailsPrint = window.open("ProductDetailsPrint.aspx?ProductID=" + productID,"","menu=true;top=10,left=100,width=600,height=750,scrollbars=1,resizable=1");
	productDetailsPrint.focus();
}
function popupDropHint(productID) {
	var dropHint = window.open("DropHint.aspx?ProductID=" + productID,"","top=0,left=0,width=600,height=750,scrollbars=1,resizable=0");
	//var dropHint = window.open("drophint.html","","top=0,left=0,width=600,height=750,scrollbars=1,resizable=0");
	dropHint.focus();
}
//stockists popup
function popupStockistsPrint() {
	var stockistsPrint = window.open("StockistsPrint.aspx","","top=10,left=100,width=600,height=750,scrollbars=1,resizable=0");
	stockistsPrint.focus();
}
//terms popup
function popupTerms() {
	var terms = window.open("Terms.aspx","","top=10,left=100,width=600,height=750,scrollbars=1,resizable=0");
	//var terms = window.open("terms.html","","top=10,left=100,width=600,height=750,scrollbars=1,resizable=0");
	terms.focus();
}
//privacy popup
function popupPrivacy() {        
	var privacy = window.open("Privacy.aspx","","top=10,left=100,width=600,height=750,scrollbars=1,resizable=0");
	//var privacy = window.open("privacy.html","","top=10,left=100,width=600,height=750,scrollbars=1,resizable=0");
	privacy.focus();
}
//promotional rules popup
function popupPromotionalRules() {        
	var promotionalRules = window.open("PromotionalRules.aspx","","top=10,left=100,width=600,height=750,scrollbars=1,resizable=0");
	promotionalRules.focus();
}
