// JavaScript Document

function checkFields()
{
  if (document.form1.title.value == "")
  {
     alert("Please enter a title for your pic.");
     form1.title.focus();
     return false;
  }


  if ((document.form1.email.value == "") ||
  (document.form1.email.value.indexOf('@') == -1) ||
  (document.form1.email.value.indexOf('.') == -1))
  {
     alert("Please enter a valid email address.");
     form1.email.focus();
     return false;
  }
  
     if(form1.show_mail[0].checked==false
     && form1.show_mail[1].checked==false )
   {
      alert("Do you want your email made public?");
      form1.show_mail[0].focus();
      return false;
   }
  if (document.form1.location.value == "")
  {
     alert("Where is the location of the shot?");
     form1.location.focus();
     return false;
  }
  if (document.form1.uload.value == "")
  {
     alert("You need to browse for an Upload Pic!");
     form1.uload.focus();
     return false;
  }
  
  return true;
}



//  End -->

