﻿
   /*#############################################################

     COPYRIGHT NOTICE
    -----------------------------------------------------
      All text, graphics are Copyright of 2002 Hamid ostadhashemi, 
      Graphics, design and concept by Hamid ostadhashemi. 
      All rights reserved. You may freely use the codes below. 

    ##############################################################*/

function valid() {
  if (document.project.name.value == "") {
    alert("Please fill Name filed");
    document.project.name.focus();
    return false;
  }
  if (document.project.email.value == "") {
    alert("Please fill Email filed");
    document.project.email.focus();
    return false;
  }
  if (document.project.project.value == "") {
    alert("Please fill Project Details filed");
    document.project.project.focus();
    return false;
  }
  document.project.submit();
}
