function CheckMessage()
{

 if(document.FormContact.title.value=="")
 {
  alert("Please fill in message subject !");
  document.FormContact.title.focus();
  return false;
 }
 if(document.FormContact.content.value=="")
 {
  alert("Please fill in message content !");
  document.FormContact.content.focus();
  return false;
 }
 if(document.FormContact.contact_person.value=="")
 {
  alert("Please fill in contact person !");
  document.FormContact.contact_person.focus();
  return false;
 }
 if(document.FormContact.company.value=="")
 {
  alert("Please fill in company !");
  document.FormContact.company.focus();
  return false;
 }
 if(document.FormContact.company_type.value=="")
 {
  alert("Please choose company_type !");
  document.FormContact.company_type.focus();
  return false;
 }
 if(document.FormContact.address.value=="")
 {
  alert("Please fill in address !");
  document.FormContact.address.focus();
  return false;
 }
 if(document.FormContact.country.value=="")
 {
  alert("Please choose country !");
  document.FormContact.country.focus();
  return false;
 }
 if(document.FormContact.email.value=="")
 {
  alert("Please fill in E-mail !");
  document.FormContact.email.focus();
  return false;
 }
 if(document.FormContact.tel.value=="")
 {
  alert("Please fill in phone !");
  document.FormContact.tel.focus();
  return false;
 }
 if(document.FormContact.fax.value=="")
 {
  alert("Please fill in fax !");
  document.FormContact.fax.focus();
  return false;
 }
 
 return true;
}
