/**
 * @author User
 */
///////////////////////////////////////////////////////////////

function validate_request() {

if (!document.contactForm.first_name.value) {
   alert ('The Name field is mandatory');
   document.contactForm.first_name.focus();
   return;
}
if (!document.contactForm.last_name.value) {
   alert ('The Surname field is mandatory');
   document.contactForm.last_name.focus();
   return;
}

if (!document.contactForm.email.value) {
   alert ('Plese type a valid e-mail address');
   document.contactForm.email.focus();
   return;
}

if (!document.contactForm.phone.value) {
   alert ('The Phone field is mandatory');
   document.contactForm.phone.focus();
   return;
}

if (!document.contactForm.message.value) {
   alert ('The Message field is mandatory');
   document.contactForm.message.focus();
   return;
}



document.request_form.submit();


}
