function ChangeFlow(topage)
{
	document.ShoppingCart.ToPageStatus.value=topage;	
	document.ShoppingCart.submit();

}
function ReCalculateOnCheckOut()
{
	ChangeFlow('check');
	//window.location.href='checkout.php';
}

/* Shipping Address Is Same As Billing Address Starts */
function SameAsAboveClick(sel)
{	
	if (sel.checked) {CheckShipAdd();} else {CheckShipDel();}	
}

function CheckShipAdd()
{	
	document.getElementById("ShipCompany").value=document.getElementById("BillCompany").value;
	document.getElementById("ShipFirstName").value=document.getElementById("BillFirstName").value;
	document.getElementById("ShipSurname").value=document.getElementById("BillSurname").value;
	document.getElementById("ShipAddress").value=document.getElementById("BillAddress").value;
	document.getElementById("ShipCity").value=document.getElementById("BillCity").value;
	document.getElementById("ShipState").value=document.getElementById("BillState").value;
	document.getElementById("ShipPostCode").value=document.getElementById("BillPostCode").value;
	document.getElementById("ShipCountry").value=document.getElementById("BillCountry").value;
	document.getElementById("ShipPhone").value=document.getElementById("BillPhone").value;	
	document.getElementById("ShipEmail").value=document.getElementById("BillEmail").value;
	
}
function CheckBillDel()
{
	document.getElementById("BillCompany").value="";	
	document.getElementById("BillFirstName").value="";
	document.getElementById("BillSurname").value="";
	document.getElementById("BillAddress").value="";
	document.getElementById("BillCity").value="";
	document.getElementById("BillState").value="";
	document.getElementById("BillPostCode").value="";
	document.getElementById("BillCountry").value="";
	document.getElementById("BillPhone").value="";	
	document.getElementById("BillEmail").value="";
	
}
function CheckShipDel()
{
	document.getElementById("ShipCompany").value="";	
	document.getElementById("ShipFirstName").value="";
	document.getElementById("ShipSurname").value="";
	document.getElementById("ShipAddress").value="";
	document.getElementById("ShipCity").value="";
	document.getElementById("ShipState").value="";
	document.getElementById("ShipPostCode").value="";
	document.getElementById("ShipCountry").value="";
	document.getElementById("ShipPhone").value="";	
	document.getElementById("ShipEmail").value="";
	
}
function ClearAll()
{	
	CheckBillDel();
	window.document.getElementById("IsSameAsBill").checked=false;
	CheckShipDel();
}

function Uncheck()
{
	
	window.document.getElementById("IsSameAsBill").checked=false;
	
}


/* Shipping Address Is Same As Billing Address Starts */

function ShowProductImageLarge(image_path)
{	
	$('ImageLarge').src=image_path;	
}

/* Open Popup Starts */
function OpenPopUpWindow(url,width,height,scrollbars)
{	
	window.open(url,'',"width="+width+", height="+height+", scrollbars="+scrollbars+", screenX=100, screenY=100, location=0, resizable=0, status=1, toolbar=0, menubar=0", false);
}
/* Open Popup Ends */
