function si(n, i) { document.images[n].src=i; }

function doubleSubmit(merchantID) {
			
	document.all.googleForm.action = "https://sandbox.google.com/checkout/cws/v2/Merchant/" + merchantID + "/checkoutForm";
	document.all.googleForm.target = "_blank";
	document.all.googleForm.submit();
	
	document.all.googleForm.action = "/order/ProcessOrder";
	document.all.googleForm.target = "_self";
	document.all.googleForm.submit();
	
	return false;
}
