// JavaScript Document

function FrontPage_Form1_Validator(theForm)
{

  if (theForm.E_Mail.value == "")
  {
    alert("Please enter a value for the \"E_Mail\" field.");
    theForm.E_Mail.focus();
	theForm.E_Mail.style.background = 'none';
	theForm.E_Mail.style.backgroundColor = '#ffb136';
    return (false);
  }
  return (true);
}

//Web design by Amarari Medes Javacript edited