	function sendCart(formObj, dumpBool) {

		formObj.submitBtn.value = "Creating cart...";
		formObj.submitBtn.disabled = true;

		var xmlHttp;
		try {
			xmlHttp=new XMLHttpRequest(); // Firefox, Opera 8.0+, Safari
		} catch (e) {
			try {
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
			} catch (e)	{
			try {
			  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e) {
					alert("Your browser does not support AJAX!");
					return false;
				}
			}
		}

			xmlHttp.onreadystatechange = function() {
				if(xmlHttp.readyState == 4) {
					formObj.submitBtn.value = "Done. Sending...";
					formObj.check.value = eval('(' + xmlHttp.responseText + ')');
					formObj.amount.value = formObj.amount.value + ".00";
					if(dumpBool) {
						formObj.action = "dump.php";
					}
					formObj.submit();
					return true;

				}
			}

				xmlHttp.open( "GET", "/ws-update/sha256.php?amount="+formObj.amount.value + ".00", true );
				xmlHttp.send( null );
	}