var lastSubMenu = false;

function fireMenuEvent( section )
{
	var theElement = document.getElementById(section);
	if( lastSubMenu != false)
	{
		document.getElementById(lastSubMenu).style.display = "none";
	}
	if( typeof(theElement) != "undefined" )
	{
		theElement.style.display = "block";
		lastSubMenu = theElement.id;
	}
}
function createImagePopup(image, title, w, h)
{
	w += 16; h += 16;
	imageWindow = window.open("", "", "scrollbars=no,menubar=no,resizable=no,toolbar=no,location=no,status=no,width="+w+",height="+h);
	imageWindow.document.write("<html>");
	if (title != "")
	{
		imageWindow.document.write('<head><title>'+title+'</title></head>');
	}
	imageWindow.document.write("<body><img src=\""+image+"\" alt=\""+title+"\" title=\""+title+"\"/></body></html>");
	imageWindow.document.close()
}
function removeProduct(product_id)
{
	disableEngravingBoxes();
	document.getElementById('removeProduct_'+product_id+'CartBillingInfo').value="on";
	document.getElementById('CartBillingInfo').submit();
}
function removeCoupon(couponCode)
{
	try {
		document.getElementById('removeCoupon-'+couponCode+'-CartBillingInfo').value = "remove";
	} catch (e) {}
	updateProducts();
}
function clearAutoText()
{
	try {
		var el = document.getElementById('couponCodeCartBillingInfo');
		if (el.value == autotext)
		{
			el.value = "";
		}
	} catch (e) {}
}
function updateProducts()
{
	clearAutoText();
	disableEngravingBoxes();
	document.getElementById('CartBillingInfo').submit();
}