function sForm() {
	document.getElementById("leftbody").innerHTML="<div style='width: 200px; height: 100px; text-align: center; margin-left: auto; margin-right: auto; background-color: transparent;'><img src='./images/ajax-loader.gif' style='margin-top: 30px;'><br /><p style='font-weight: bold;'>LOADING...</p></div>";
	new Ajax.Updater('leftbody', 'submit.html', {
		method: 'post'
	});
}

function rForm() {
	document.getElementById("leftbody").innerHTML="<div style='width: 200px; height: 100px; text-align: center; margin-left: auto; margin-right: auto; background-color: transparent;'><img src='./images/ajax-loader.gif' style='margin-top: 30px;'><br /><p style='font-weight: bold;'>LOADING...</p></div>";
	setTimeout ( "oForm()", 2000 );
}

function oForm() {
	document.getElementById("leftbody").innerHTML="<h1>Contact us at the Castaway Restaurant</h1><div><img src='./images/contactus001.jpg'></div><p><span class='bodybold'>Whether you want</span> to inquire about reservations, plan your perfect event, need some information not found on our website, or would just like to leave feedback, contact us here at the Castaway.</p><ul style='list-style: none;'><li style='padding-bottom: 20px;'><span class='bodybold'>The Castaway Restaurant</span><br />670 Kendall Dr.<br />San Bernardino, CA 92407</li><li style='padding-bottom: 20px;'><span class='bodybold'>Telephone:</span><br />Phone: (909) 881-1502<br />Fax: (909) 881-2548</li><li style='padding-bottom: 20px;'><span class='bodybold'>Restaurant Email Information:</span><br />Email: <a href='mailto:gmunit19@srcmail.com'>gmunit19@srcmail.com</a></li><li><span class='bodybold'>Catering/Sales Email Information:</span><br />Email: <a href='mailto:doc19@srcmail.com'>doc19@srcmail.com</a></li></ul>";
}


var xmlHttp

function ssForm() {
	document.getElementById("leftbody").innerHTML="<div style='width: 200px; height: 100px; text-align: center; margin-left: auto; margin-right: auto; background-color: transparent;'><img src='./images/ajax-loader.gif' style='margin-top: 30px;'><br /><p style='font-weight: bold;'>LOADING...</p></div>";
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Your browser does not support AJAX!");
		return;
	}
	var url="submit.html";
	var cat = 'inquiry';
	var name = document.contactus.fname.value;
	var phone = document.contactus.tphone.value;
	var email = document.contactus.email.value;
	var cmt = document.contactus.fcomments.value;
	var tform = 'category='+cat+'&fname='+name+'&tphone='+phone+'&email='+email+'&fcomments='+cmt;
	xmlHttp.onreadystatechange=bodyChanged;
	xmlHttp.open("POST",url,true);
	xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");     
	xmlHttp.send(tform);
} 

function bodyChanged() { 
	if (xmlHttp.readyState==4) { 
		document.getElementById("leftbody").innerHTML=xmlHttp.responseText;
		pageTracker._trackPageview("/submit.html");
		if (document.getElementById("clearIT") != null) {;
			var x = document.getElementById("clearIT");
			if (x.innerHTML = "clearit") {
				clearForm();
			} 
		}
	}
}

function GetXmlHttpObject() {
	var xmlHttp=null;
	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e) {
		// Internet Explorer
		try {
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	return xmlHttp;
}

function clearMe(formfield){
	if (formfield.defaultValue==formfield.value) {
		formfield.value = "";
	}
}

function clearForm() {
	document.contactus.fname.value = "";
	document.contactus.tphone.value = "";
	document.contactus.email.value = "";
	document.contactus.fcomments.value = "";
}
