function OrderFuelCard()
	{
		var xmlhttp;
		if (window.XMLHttpRequest)
		  {
		  // code for IE7+, Firefox, Chrome, Opera, Safari
		  xmlhttp=new XMLHttpRequest();
		  }
		else if (window.ActiveXObject)
		  {
		  // code for IE6, IE5
		  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		  }
		else
		  {
		  alert("Your browser does not support XMLHTTP!");
		  }
		xmlhttp.onreadystatechange=function()
		{
		if(xmlhttp.readyState==4)
		  {
			document.getElementById("AjaxFuelCard").innerHTML = xmlhttp.responseText;
			
			//alert('"'+xmlhttp.responseText+'"');

		}
		if(xmlhttp.readyState !=4)
		  {
			document.getElementById("AjaxFuelCard").innerHTML = "loading...";

		}
		}
		xmlhttp.open("GET","/iFrameContent.asp?action=FuleCardSent",true);
		xmlhttp.send(null);
	}
function AjaxChangeBank()
	{
		var xmlhttp;
		if (window.XMLHttpRequest)
		  {
		  // code for IE7+, Firefox, Chrome, Opera, Safari
		  xmlhttp=new XMLHttpRequest();
		  }
		else if (window.ActiveXObject)
		  {
		  // code for IE6, IE5
		  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		  }
		else
		  {
		  alert("Your browser does not support XMLHTTP!");
		  }
		xmlhttp.onreadystatechange=function()
		{
		if(xmlhttp.readyState==4)
		  {
			document.getElementById("AjaxContent").innerHTML = xmlhttp.responseText;
			
			//alert('"'+xmlhttp.responseText+'"');

		}
		if(xmlhttp.readyState !=4)
		  {
			document.getElementById("AjaxContent").innerHTML = "loading...";

		}
		}
		xmlhttp.open("GET","/iFrameContent.asp?action=FundingTransfer",true);
		xmlhttp.send(null);
	}

