// JavaScript Document

function mailchk(ww)
	{ 
	  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(ww)){

		return (true)

		}

		//alert("Invalid E-mail Address! Please re-enter.")

		return (false)

}

function validate()
{

var name=document.getElementById("contactname").value;

var email=document.getElementById("contactemail").value;


if(name=="")
{
document.getElementById('namediv').innerHTML="Please Enter Your Name";
 return false;
}
if(!mailchk(email) || email=="")
{
document.getElementById('divemail').innerHTML="Please Enter Your E-mail";
 return false;
}
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {

    document.getElementById("contact-mid").style.display='none';
    document.getElementById("getmessage").style.display='block';
	//window.location="http://proa.yourstagingserver.com/thank-you/";
  /*  document.getElementById("getmessage").innerHTML=xmlhttp.responseText;*/
	/*alert(xmlhttp.responseText);*/
		
    }
  }
var url = "http://www.peopleroa.com/quickcontact.php?name="+name+"&email="+email;
xmlhttp.open("GET",url,true);
xmlhttp.send();




}

function namefun()
{
document.getElementById('namediv').innerHTML="";
}

function emailfun()
{
document.getElementById('divemail').innerHTML="";

}


		
	
