// JavaScript Document
var TAB_ACTIVE = null;
function ShowTab(tabID){

	if(TAB_ACTIVE==tabID){ return; }

	tab = document.getElementById("tab_"+tabID);
	tab.className = "tabOpen";
	tabcontent = document.getElementById(tabID);
	tabcontent.style.display="block";

	if(TAB_ACTIVE){
		tab = document.getElementById("tab_"+TAB_ACTIVE);
		tab.className = "tabClosed";
		tabcontent = document.getElementById(TAB_ACTIVE);
		tabcontent.style.display="none";
	}
	
	TAB_ACTIVE = tabID;
	
}

function EnlargeImage(img){
	win=open("../products/_enlarge.php?img="+escape(img),"enlarge","width=450,height=450,scrollbars=yes,menubar=no,resizable=yes,top=0,left=0");
	win.focus();
}

function Pop(url){
	win=open(url,"popup"+(Math.random()),"width=1024,height=700,scrollbars=yes,menubar=yes,toolbar=yes,resizable=yes,statusbar=yes,top=0,left=0");
	win.focus();
}


function DeleteCartItem(upc){
	if(confirm("Are you sure you want to remove this from your cart?")){
		location.href="../cart/?cmd=del&UPC="+upc;	
	}
}
function UpdateCart(form){
	form.cmd.value="update";
	form.action="../cart/";
	form.submit();
}
function CheckoutCart(form){
	form.cmd.value="checkout";
	form.submit();
}