// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
//    Copyright 2003- 2004 -  Visuddhi
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
//    Questo programma deve essere distribuito assieme al presente testo
//    e deve sempre e comunque  riportare la dicitura
//    PROGRAMMA ORIGINALE DI VISUDDHI - WWW.VISUDDHI.COM
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
//    Visuddhi - Santa Marinella (RM)-ITALY - mail: info@visuddhi.com
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

function checkform(){
  nomL = window.document.getElementById('nom').value.length;
  tesL = window.document.getElementById('tes').value.length;
  maiL = window.document.getElementById('mai').value.length;
  if ( nomL < 1 | tesL < 50 ){
    alert("Nome e un messaggio di almeno 50 caratteri sono campi obbligatori");
    return false;
  } 
  if ( maiL > 1 ){
    maiS = window.document.getElementById('mai').value;
	filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
    if ( !filter.test(maiS) ){
		alert("Controllare l'indirizzo e-mail inserito");
      return false;
    }
	}
  return true;
}

function checkmail(){
  maiL = window.document.getElementById('mail').value.length;
  if ( maiL < 1 ){
    alert("L'indirizzo e-mail deve essere inserito");
    return false;
  } 
  if ( maiL > 1 ){
    maiS = window.document.getElementById('mail').value;
    filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
    if ( !filter.test(maiS) ){
		alert("Controllare l'indirizzo e-mail inserito");
      return false;
    }
	}
  return true;
}

function color(cosa){ cosa.style.background = '#efefef'; }
function decolor(cosa){ cosa.style.background = '#ffffff'; }

function opengallery(gal){
  gallery_foto = window.open('gallery_foto.asp?gal=' + gal, 'gallery', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=700,height=500,top=50,left=50', true);
  gallery_foto.focus();
}


