function ApriFoto(foto,dW,dH){
 window.open(foto,'ApriFoto','left=150,top=20,scrollbars=no,resizable=yes,width='+dW+',height='+dH+',status=no,location=no,toolbar=no');
}

// JavaScript Document
function Svuota(StrName){
 document.getElementById(StrName).value= '';
 document.getElementById(StrName).style.backgroundColor = "#879999";
// document.forms['ContattoForm'].Nome.value = '';
// document.forms['ContattoForm'].Nome.focus();
}

function BordiFormOVER(StrName){
 document.getElementById(StrName).style.backgroundColor = "#CEE7FF"; //
 document.getElementById(StrName).style.color = "#9B1717";
// document.forms['ContattoForm'].StrName.style.border = "1 solid black";
}

function BordiFormOUT(StrName){
 document.getElementById(StrName).style.backgroundColor = "#FFFFFF";
 document.getElementById(StrName).style.color = "black";
// document.forms['ContattoForm'].StrName.style.border = "1 dashed black";
}