// JavaScript Document
function confirmdel(cid,pname) {
		str = "Are you sure you want to delete '" + pname + "' from your cart?";
		if (confirm(str)) {
			document.location = "cart_functions.php?action=remove_item&cartid=" + cid;
		}
	}

	// Confirm deletion of all items from the cart
	function confirm_removeall() {
		str = "Are you sure you want to empty your cart?";
		if (confirm(str)) {
			document.location = "cart_functions.php?action=remove_all";
		}
	}			
	
	function MyWindow(url)
			{
				windowHandle = window.open(url,'Page','height=575,width=725,screenX=10,screenY=10,top=50,left=150,resizable=1,scrollbars=1,statusbar=1');
				windowHandle.focus();
			}

function MyWindow2(url,wt,ht)
			{
				windowHandle = window.open(url,'Page','height='+ht+',width='+wt+',screenX=10,screenY=10,top=50,left=150,resizable=1,scrollbars=1,statusbar=1');
				windowHandle.focus();
			}
			
function refreshParent() {
  window.opener.location.href = window.opener.location.href;

  if (window.opener.progressWindow)
		
 {
    window.opener.progressWindow.close()
  }
 
}
