function process_email()
{
   if ((IsEmailValid('emailpict','email')&& (document.forms["emailpict"].name.value != "")))
      {
      window.open('blank.html','emailstatus','width=275,height=250');
      document.forms["emailpict"].submit();
      }
   else
      {
      window.alert("Please make sure that you have entered\nyour name and a valid email address.")
      }
}

