function check_required() {
if ( document.contact_form.First_Name.value == "" ) {
alert('You did not enter an answer for the required field \'First Name\'! \n\nYou must do this before this form can be sent.');
return false;
}
if ( document.contact_form.Last_Name.value == "" ) {
alert('You did not enter an answer for the required field \'Last Name\'! \n\nYou must do this before this form can be sent.');
return false;
}
if ( document.contact_form.email.value == "" ) {
alert('You did not enter an answer for the required field \'Email\'! \n\nYou must do this before this form can be sent.');
return false;
}
if ( document.contact_form.Inquiry.value == "" ) {
alert('You did not enter an answer for the required field \'Inquiry\'! \n\nYou must do this before this form can be sent.');
return false;
}
return true;
}