
function Trim(){return this.replace(/\s+$|^\s+/g,"");}
String.prototype.Trim=Trim;
// Email Validation Javascript
// copyright 23rd March 2003, by Stephen Chapman, Felgall Pty Ltd
function validateEmail(addr) {
var invalidChars = '\/\'\\ ";:?!()[]\{\}^|';
for (i=0; i<invalidChars.length; i++) {
   if (addr.indexOf(invalidChars.charAt(i),0) > -1) {
      return false;
   }
}
for (i=0; i<addr.length; i++) {
   if (addr.charCodeAt(i)>127) {
      return false;
   }
}

var atPos = addr.indexOf('@',0);
if (atPos == -1) {
   return false;
}
if (atPos == 0) {
   return false;
}
if (addr.indexOf('@', atPos + 1) > - 1) {
   return false;
}
if (addr.indexOf('.', atPos) == -1) {
   return false;
}
if (addr.indexOf('@.',0) != -1) {
   return false;
}
if (addr.indexOf('.@',0) != -1){
   return false;
}
if (addr.indexOf('..',0) != -1) {
   return false;
}
var suffix = addr.substring(addr.lastIndexOf('.')+1);
if (suffix.length != 2 && suffix != 'com' && suffix != 'net' && suffix != 'org' && suffix != 'edu' && suffix != 'int' && suffix != 'mil' && suffix != 'gov' & suffix != 'arpa' && suffix != 'biz' && suffix != 'aero' && suffix != 'name' && suffix != 'coop' && suffix != 'info' && suffix != 'pro' && suffix != 'museum') {
   return false;
}
return true;
}
function validate(){
	var messaggio="";
	document.getElementById("mail").style.backgroundColor=document.getElementById("telefono").style.backgroundColor;
	document.getElementById("richiesta").style.backgroundColor=document.getElementById("telefono").style.backgroundColor;
	document.getElementById("nome").style.backgroundColor=document.getElementById("telefono").style.backgroundColor;
	document.getElementById("privacylabel").style.backgroundColor=document.getElementById("sendcclabel").style.backgroundColor;
	if(document.getElementById("nome").value==""){messaggio=s_names;document.getElementById("nome").style.backgroundColor="#FFD5D5";}
  if(document.getElementById("mail").value==""){if(messaggio!="")messaggio=messaggio+"\n";messaggio=messaggio+s_email;
	  document.getElementById("mail").style.backgroundColor="#FFD5D5";
	} else if (!validateEmail(document.getElementById("mail").value.Trim())){
		  if(messaggio!="")messaggio=messaggio+"\n";messaggio=messaggio+s_invalidmail;
			document.getElementById("mail").style.backgroundColor="#FFD5D5";
	}
  if (document.getElementById("richiesta").value==""){
		 if(messaggio!="")messaggio=messaggio+"\n";messaggio=messaggio+s_request;
		 document.getElementById("richiesta").style.backgroundColor="#FFD5D5";
	}
  if(!document.getElementById("privacy").checked){
		 if(messaggio!="")messaggio=messaggio+"\n";messaggio=messaggio+s_privacy;
		 document.getElementById("privacylabel").style.backgroundColor="#FFD5D5";
	}
  if(messaggio!=""){alert(s_alert+messaggio);return false;}else
return true;}
