// JavaScript Document
<!--
function sendMailTo(name, company, cn) {
      locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + cn;
      window.location.replace(locationstring);
   }
   
function CheckPosts()
{
 if(document.form1.FKname.value=="")
 {
  alert("Please enter the  Name, thanks! ");
  document.form1.FKname.focus();
  return false;
  }
 if(document.form1.FKphone.value=="")
 {
  alert("Please enter the phone, thanks! ");
  document.form1.FKphone.focus();
  return false;
  }
   if(document.form1.FKemail.value=="")
 {
  alert("Please enter the email, thanks! ");
  document.form1.FKemail.focus();
  return false;
  }
   if(document.form1.FKtitle.value=="")
 {
  alert("Please enter the title, thanks! ");
  document.form1.FKtitle.focus();
  return false;
  }  

   if(document.form1.FKmessage.value=="")
 {
  alert("Please enter the message, thanks! ");
  document.form1.FKmessage.focus();
  return false;
  } 
  return true;
}


function CheckSearch()
{
   if(document.SearchType.Keyword.value=="")
 {
  alert("Please enter the Keyword, thanks! ");
  document.SearchType.Keyword.focus();
  return false;
  } 
  return true;
}
//-->