
//   DESIGNED BY MAHIR ISHO 
//   Email : mahir_ph@hotmail.com
//   Mobile : +61422073832

function checkmail(){
	evalue=document.FormName.Email.value;
	if(evalue.length 

&&(evalue.indexOf("@")==0||evalue.indexOf("@")==-1||evalue.indexOf(".")==-1||evalue.indexOf(

".")==0))
	{
	alert("Invalid E-Mail address.\n"+"Format is: abc@domainname.com");
        //document.FormName.Email.value="";
	 document.FormName.Email.focus();
	}
	}

function feedback(){


    if(document.FormName.Day.value==''){
    document.FormName.Day.focus();
    alert("Please make sure Date field is not left blank");
   	return false;
    }
	 if(document.FormName.Month.value==''){
    document.FormName.Month.focus();
    alert("Please make sure Date is not left blank");
   	return false;
    }
    if(document.FormName.Hour.value==''){
    document.FormName.Hour.focus();
    alert("Please make sure Time Field is not left blank");
    return false;
    }
    if(document.FormName.Name.value==''){
    document.FormName.Name.focus();
    alert("Please make sure Name Field is not left blank");
   	return false;
    }
    if(document.FormName.Email.value==''){
    document.FormName.Email.focus();
    alert("Please make sure Email Field is not left blank");
   	return false;
    }
    if(document.FormName.Pickup.value==''){
    document.FormName.Pickup.focus();
    alert("Please make sure Pickup location field is not left blank");
   	return false;
    }
    if(document.FormName.Destination.value==''){
    document.FormName.Destination.focus();
    alert("Please make sure Destination location field is not left blank");
   	return false;
    }
    else{
    document.FormName.action="order.php";
    document.FormName.submit();
    }

}