function ValidateFeeback(d){
 if(d.name.value == ""){
  alert("Please enter the name");
  return false;
 }
 if(d.email.value == ""){
  alert("Please enter the email");
  return false;
 }
 if(d.message.value == ""){
  alert("Please enter the message");
  return false;
 }
}

function ValidationContactus(d){
 if(d.name.value == ""){
  alert("Please enter the name");
  return false;
 }
 if(d.email.value == ""){
  alert("Please enter the email");
  return false;
 }
  if(d.address.value == ""){
  alert("Please enter the address");
  return false;
 }
  if(d.state.value == ""){
  alert("Please enter the state");
  return false;
 }
  if(d.zipcode.value == ""){
  alert("Please enter the zipcode");
  return false;
 }
  if(d.telephone.value == ""){
  alert("Please enter the telephone");
  return false;
 }
 if(d.message.value == ""){
  alert("Please enter the message");
  return false;
 }
}
