// JavaScript Document
function submitIt(myForm) {
if ((myForm.fullname.value == "") || (myForm.phone.value == "") || (myForm.other_info.value == "")){ 
alert("You must fill up the required fields.");
return false;
}
else{
alert("Your order will now be sent to Basic Flavors Inc..\nOne of their representatives will contact you about your order.\nThank you!");
return true;	
}
}
