
function contect_form_Validator(theForm)
{
  if (theForm.Name.value=='' || theForm.Name.value=='Name')
  {
    alert("Please enter your name.");
    theForm.Name.focus();
	theForm.Name.value='Name';
    return (false);
  }  
 if(theForm.Email.value=='' || theForm.Email.value=='Email')
      {
           alert("Please enter your email address.")
           theForm.Email.focus()
           return false;
      }
     else  
      if (theForm.Email.value.indexOf("@")<0 || theForm.Email.value.indexOf(".")<0)
          {
             alert("Please enter a valid email address. eg:info@bluent.net")
             theForm.Email.focus()
             return false;
           }   
  if (theForm.Phone.value =='' || theForm.Phone.value=='Phone')    
  {
    alert("Please enter your phone number.");
    theForm.Phone.focus();
    return (false);
  }
 return (true);
} 
function valid(theForm)
{ 
if(theForm.value=='' || theForm.value==theForm.name)
{
theForm.value=theForm.name;
return false;
}
return true;
}

function onclickcheck(theForm)
{
if(theForm.value=='Name' || theForm.value=='Email' || theForm.value=='Phone' || theForm.value=='Website' || theForm.value=='Message')
{
theForm.value='';
}
}
