// JavaScript Document



	function paypal_SetExpressCheckout(basketCount)
	{
		
		var text = "";


		text += "AMT=" + document.form1.transactionamount.value;
		text += "&doWhat=setExpressCheckout";
		text += "&countBasketItems=" + basketCount;

//alert("../iwa/payment/ajax/paypal.php?" + text);
		actionAjax("../iwa/payment/ajax/paypal.php?" + text, paypal_SetExpressCheckout_response);		

	}
	function paypal_SetExpressCheckout_response()
	{
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
		{ 
			//alert(xmlHttp.responseText);
			response = xmlHttp.responseText.split("@@");
			//alert(response);
			
			if (response[0] == "ok")
			{
				window.location.href = response[1];
			}
			else
			{
				alert("ERROR:\n\n" + xmlHttp.responseText);	
			}
			
			
		}	
	}
