function Property_Description_Form(theForm)
{
   if (theForm.chrPropertyTitle.value == "")
  {
    alert("Please fill in \"Property Title\" field.");
    theForm.chrPropertyTitle.focus();
    return (false);
  }
  
  if (theForm.chrLocation.value == "")
  {
    alert("Please fill in \"Location\" field.");
    theForm.chrLocation.focus();
    return (false);
  }
  return (true);
}
