function wopen(wfile, vwidth, vheight) {
 window.open(wfile,'','scrollbars=yes,resizable=yes,width=' + vwidth + ',height=' + vheight+',status=no,location=no,toolbar=no,left=10,top=10,screenX=10,screenY=10');
}

function chkcontact() {
 if(document.contatti.nome.value == "") {
  alert("Inserire il nome");
  return false;
 }
 if(document.contatti.email.value == "") {
  alert("Inserire l'indirizzo email");
  return false;
 }
 document.contatti.submit();
}

function chkguestbook() {
 if(document.guestbook.nome.value == "") {
  alert("Inserire il nome");
  return false;
 }
 if(document.guestbook.messaggio.value == "") {
  alert("Inserire il messaggio");
  return false;
 } 
 document.guestbook.submit();
}