function contactme(strform)
  {
  var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    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)
        {
        	if (xmlHttp.responseText == "Failed") 
			{
				alert("Please enter all fields...");
			}
			if (xmlHttp.responseText == "Success!")
			{
				strform.yourname.value="";
				strform.yourphone.value="";
				strform.youremail.value="";
				strform.enquiry.value="";
				alert("Thank you for completing our form. We will contact you as soon as possible.");
			}
        }
      }
	
	var url="formprocess.asp";
	url=url+"?Email=" + strform.youremail.value;
	url=url+"&Fullname=" + strform.yourname.value;
	url=url+"&Telephone=" + strform.yourphone.value;
	url=url+"&Details=" + strform.enquiry.value;
    xmlHttp.open("GET",url,true);
    xmlHttp.send(null);
  }