
function FrontPage_Form1_Validator(theForm)
{
if (theForm.cognome_o_azienda.value == "")
  {
  alert("Inserisca Il suo Cognome o il Nome dell'Azienda");
  theForm.email.focus();
  return (false);
  }
  
if (theForm.email.value == "")
  {
  alert("Inserisca la sua email");
  theForm.email.focus();
  return (false);
  }
  
if (theForm.messaggio.value == "")
  {
  alert("Inserisca il messaggio");
  theForm.email.focus();
  return (false);
  }
  
 
  return (true);
  };

var bookmarkurl="http://www.studiograndoni.com"
var bookmarktitle="____GRANDONI REAL ESTATE S.R.L.____"

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
