<!--
function validate_form_order() {
  validity = true;
  if (!check_empty(document.form.Contact_Name.value))
        { validity = false; alert('Sorry!Please fill in Contact Person.'); }
  if (!check_empty(document.form.Company_Name.value))
        { validity = false; alert('Sorry!Please fill in Company Name.'); }
  if (!check_empty(document.form.Company_Address.value))
        { validity = false; alert('Sorry!Please fill in Address.'); }
  if (!check_email(document.form.Email.value))
        { validity = false; alert('Sorry!Please fill in E-mail.'); }
  if (!check_empty(document.form.Product_Code_Name.value))
        { validity = false; alert('Sorry!Please fill in Product Code/Name'); }
  if (!check_empty(document.form.Product_Color.value))
        { validity = false; alert('Sorry!Please fill in Product Color'); }
  if (!check_empty(document.form.Order_Quantity.value))
        { validity = false; alert('Sorry!Please fill in Order Quantity'); }
  if (!check_empty(document.form.Destination.value))
        { validity = false; alert('Sorry!Please fill in Destination'); }
  if (validity)
        alert ("Thank you for your enquiry.");
  return validity;
}
function check_empty(text) {
  return (text.length > 0);
}
function check_email(address) {
  if ((address == "")
    || (address.indexOf ('@') == -1)
    || (address.indexOf ('.') == -1))
      return false;
  return true;
}
// -->

<!--
function validate_form_feedback() {
  validity = true;
  if (!check_empty(document.form.Company_Name.value))
        { validity = false; alert('Sorry!Please fill in Company Name.'); }
  if (!check_empty(document.form.Contact_Name.value))
        { validity = false; alert('Sorry!Please fill in Contact Name.'); }
  if (!check_empty(document.form.Company_Address.value))
        { validity = false; alert('Sorry!Please fill in Address.'); } 
  if (!check_email(document.form.Email.value))
        { validity = false; alert('Sorry!Please fill in E-Mail.'); }
  if (!check_empty(document.form.Comments_Information.value))
        { validity = false; alert('Sorry!Please fill in Comments/Information.'); }
  if (validity)
        alert ("thank you for your enquiry");
  return validity; 
}
function check_empty(text) {
  return (text.length > 0); 
}
function check_email(address) {
  if ((address == "")
    || (address.indexOf ('@') == -1)
    || (address.indexOf ('.') == -1))
      return false;
  return true;
}
// -->

<!--
function validate_form_track() {
  validity = true;
  if (!check_empty(document.form.Porforma_invoice_number.value))
        { validity = false; alert('Sorry!Please fill in Company Name.'); }
  if (!check_email(document.form.Email.value))
        { validity = false; alert('Sorry!Please fill in E-Mail.'); }
  if (validity)
        alert ("thank you for your enquiry");
  return validity; 
}
function check_empty(text) {
  return (text.length > 0); 
}
function check_email(address) {
  if ((address == "")
    || (address.indexOf ('@') == -1)
    || (address.indexOf ('.') == -1))
      return false;
  return true;
}
// -->

<!--
function validate_form_mailing() {
  validity = true;
  if (!check_email(document.form.Email.value))
        { validity = false; alert('Sorry!Please fill in E-Mail.'); }
  if (validity)
        alert ("thank you for your enquiry");
  return validity; 
}
function check_empty(text) {
  return (text.length > 0); 
}
function check_email(address) {
  if ((address == "")
    || (address.indexOf ('@') == -1)
    || (address.indexOf ('.') == -1))
      return false;
  return true;
}
// -->


<!--
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->