 function echeck(str) {

  var at="@"
		var dot="."
		var lat=str.indexOf(at)
		var lstr=str.length
		var ldot=str.indexOf(dot)
		if (str.indexOf(at)==-1){
		   alert("Invalid E-mail")
		  return false
		}

		if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
		   alert("Invalid E-mail")
		   return false
		}

		if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
		    alert("Invalid E-mail")
		   return false
		}

		 if (str.indexOf(at,(lat+1))!=-1){
		    alert("Invalid E-mail")
		   return false
		 }

		 if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
		    alert("Invalid E-mail")
		    return false
		 }

		 if (str.indexOf(dot,(lat+2))==-1){
		    alert("Invalid E-mail")
		   return false
		 }
		
		 if (str.indexOf(" ")!=-1){
		    alert("Invalid E-mail")
		   return false
		 }
		   return true	
}	

function validate_apply ( )
{
    var errors=0;

    if ( document.OXDA_Enquiry.fname.value == "" )
    {
        alert ( "Please specify your First Name." );
        errors ++;
    }
	
    if ( document.OXDA_Enquiry.lname.value == "" )
    {
        alert ( "Please specify your Last Name." );
        errors ++;
    } 
	
		 if ( document.OXDA_Enquiry.phonenumber.value == "" )
    {
        alert ( "Please specify your phone number." );
       errors ++;
    }

	 if ( document.OXDA_Enquiry.contact_method.value == "" )
    {
        alert ( "Please specify your contact method." );
       errors ++;
    }

	 if ( document.OXDA_Enquiry.details.value == "" )
    {
        alert ( "Please specify your requirements in detail." );
       errors ++;
    }
	 
var emailID=document.OXDA_Enquiry.email
	if (echeck(emailID.value)==false){
		emailID.value=""
		emailID.focus()
		valid = false;
		errors ++;
	}
	

     if(!errors)
   {

   document.OXDA_Enquiry.submit();
   document.OXDA_Enquiry.action='apply2.php';
   }
}
function validate_nonapply ( )
{
    var errors=0;

    if ( document.OXDA_Enquiry.fname.value == "" )
    {
        alert ( "Please specify your First Name." );
        errors ++;
    }
	
    if ( document.OXDA_Enquiry.lname.value == "" )
    {
        alert ( "Please specify your Last Name." );
        errors ++;
    } 
	
		 if ( document.OXDA_Enquiry.phonenumber.value == "" )
    {
        alert ( "Please specify your phone number." );
       errors ++;
    }
	
		 if ( document.OXDA_Enquiry.contact_method.value == "" )
    {
        alert ( "Please specify your contact method." );
       errors ++;
    }

	 if ( document.OXDA_Enquiry.details.value == "" )
    {
        alert ( "Please specify your requirements in detail." );
       errors ++;
    }
var emailID=document.OXDA_Enquiry.email
	if (echeck(emailID.value)==false){
		emailID.value=""
		emailID.focus()
		valid = false;
		errors ++;
	}
	

     if(!errors)
   {

   document.OXDA_Enquiry.submit();
   
   }
}
