function CartIn(frm)
{
	var targetURL = "/cart.php";
	var popup = window.open(targetURL , "cart", "height=500,width=640,resizable=1,scrollbars=1,status=1,toolbar=0,menubar=0,location=0");

	frm.target = "cart";
	frm.submit();
	popup.focus();
}

function CartOpen(frm)
{
	var targetURL = "/cart.php";
	var popup = window.open(targetURL , "cart", "height=500,width=640,resizable=1,scrollbars=1,status=1,toolbar=0,menubar=0,location=0");

	popup.focus();
}

function openerReload(SID){
	opener.location.href = "/order.php?PHPSESSID="+SID;
	self.close();
}