// JavaScript Document


function noSpam(aa,bb,cc) {
  aabbcc = "mailto:" + aa + "@" + bb + "?subject=" + cc;
  window.location = aabbcc;
}

function UnCrypt(s, shift) {
	var n=0;
	var r="";
	for(var i=0;i<s.length;i++) { 
		n=s.charCodeAt(i); 
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(shift)); 
	}
	return r;
}
function rl_UnCrypt(s, shift)	{
	location.href=UnCrypt(s, shift);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function mail() {
      	document.forms['contattomail'].Nome.value = "Nome";
      	document.forms['contattomail'].Email.value = "E-Mail";
      	document.forms['contattomail'].messaggio.value = "Messaggio";
}

