	var popper = null;
	function popImage(prod) {
		if (popper && popper.open) {popper.close();}
		var dest = "bigPic.html?sku="+prod;
		popper = window.open(dest,"popup","scrollbars=no,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,copyhistory=0,width=450,height=600");
		return;
	}

	function details(prod) {
		if (popper && popper.open) {popper.close();}
		var dest = "productDetails.html?sku="+prod;
		popper = window.open(dest,"popup","scrollbars=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,copyhistory=0,width=450,height=450");
		return;
	}

	function instructions(prod) {
		if (popper && popper.open) {popper.close();}
		var dest = "productInstructions.html?sku="+prod;
		popper = window.open(dest,"popup","scrollbars=no,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,copyhistory=0,width=450,height=300");
		return;
	}

