// controllo MAX 400 caratteri
function LunghezzaMax(campo) 
{ 
if (campo.value.length>400) 
{ 
alert("Il campo note deve contenere massimo 400 caratteri..."); 
campo.value=campo.value.substring(0, 400); 
} 
} 
//-->

// apertura popup
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
