
<!--
function Valideaza(frm)
{
 if (frm.txtFirstName.value=="")
  {
   alert ("You did not introduce your first name!");
   frm.txtFirstName.focus();
   return false;
  }
 if (frm.txtLastName.value=="")
  {
   alert ("You did not introduce your last name!");
   frm.txtLastName.focus();
   return false;
  }
 if (frm.txtNotesTitle.value=="")
  {
   alert ("You did not introduce the notes' title!");
   frm.txtNotesTitle.focus();
   return false;
  }
 if (frm.txtEmail.value=="")
  {
   alert ("You did not introduce your e-mail!");
   frm.txtEmail.focus();
   return false;
  }
if (frm.txtNotesDescription.value=="")
  {
   alert ("You did not introduce your message!");
   frm.txtNotesDescription.focus();
   return false;
  }
 return true;
}
//-->

