function upphoto()
{
  if (document.upload_photo.title.value == "")
  {
    alert("Please enter a value for the \"Title\" field.");
    upload_photo.title.focus();
    return (false);
  }

  if (document.upload_photo.description.value == "")
  {
    alert("Please enter a value for the \"Description\" field.");
    upload_photo.description.focus();
    return (false);
  }

  if (document.upload_photo.byline.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    upload_photo.byline.focus();
    return (false);
  }

  if (document.upload_photo.emailaddress.value == "")
  {
    alert("Please enter a value for the \"E-mail\" field.");
    upload_photo.emailaddress.focus();
    return (false);
  }

  if (document.upload_photo.userfile.value == "")
  {
    alert("Please enter the name of the \"Picture\" you want to upload.");
    upload_photo.userfile.focus();
    return (false);
  }

  var cnt=document.upload_photo.country.selectedIndex;
  if ( cnt == 0)
  {
    alert("Please select a \"Country\".");
    upload_photo.country.focus();
    return (false);
  }

  if (document.upload_photo.date.value == "")
  {
    alert("Please enter the \"Date\" in proper format.");
    upload_photo.date.focus();
    return (false);
  }
  
  if (document.upload_photo.place.value == "")
  {
    alert("Please enter a value for the \"Place\" field.");
    upload_photo.place.focus();
    return (false);
  }

  return (true);
}
