// JavaScript Document

image1 = new Image();
image1.src = "images/btn-AddToCart2.png";

function popUp(URL) 
{
//	alert("This will open a new window. When you are ready, please close the window to continue shopping.");
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=800,left = 340,top = 0');");
}


function AddItemPopUp(URL) 
{
	//alert("This will open a new window. When you are ready, please close the window to continue shopping.");
	var qty;
	var prodID;
	var adminID;
	var urlBase;
	var urlTarget;
	qty = document.ProductOrderForm.quantity.value;
	prodID = document.ProductOrderForm.pid.value;
	adminID = document.ProductOrderForm.adminid.value;
	urlBase = "https://wahmcart.com/cgi-bin/index.cgi";
	urlTarget = urlBase + "?adminid=" + adminID + "&pid=" + prodID + "&quantity=" + qty + "&addtocart=1";
	//alert(urlTarget);
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(urlTarget, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=800,left = 340,top = 0');");
}