function checkform() {
   avviso = "";
   if (document.getElementById) theform = document.getElementById("linkform");
   else theform = document.mailform;
   if (!theform) alert("JAVASCRIPT ERROR : cannot reference form");
   
   if (theform.url.value=="") avviso += "Inserire l'URL  |  Enter the URL\n";
   if (theform.title.value=="") avviso += "Inserire il TITOLO  |  Enter TITLE\n";
   if (theform.description.value=="") avviso += "Inserire la DESCRIZIONE  |  Enter DESCRIPTION\n";
   if (theform.linkback.value=="") avviso += "Inserire l'URL del link reciproco  |  Enter the link back URL\n";

   if (avviso!="") {
      alert(avviso);
      return 0;
   }
   else theform.submit();

}
