function apriFinestra(url, myname, w, h, prop, res) {
 	var winl = (screen.width - w) / 2;
 	var wint = (screen.height - h) / 2;
 	winprops = "scrollbars="+prop+",height="+h+",width="+w+",top="+wint+",left="+winl+",resizable="+res+",status=yes";
	var win;
 	win = window.open(url, myname, winprops);
 if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function spedisci(){
var ok=true;
if(ok==true){
var voggetto=document.forms[0].titolo.value;
if(voggetto.length<2){alert("Inserire un oggetto al commento.");
document.forms[0].titolo.focus();
ok=false;}}

if(ok==true){
var vtestocommento=document.forms[0].commento.value;
if(vtestocommento.length<2){alert("Inserire il testo del commento.");
document.forms[0].commento.focus();
ok=false;}}

if(ok==true){
var vnickname=document.forms[0].autore.value;
if(vnickname.length<2){alert("Inserire il nickname.");
document.forms[0].autore.focus();
ok=false;}}


var regexp =/^[A-Za-z0-9_.%-]+@[A-Za-z0-9_.-]+[.][A-Za-z]{2,4}$/;
var jmail=document.forms[0].email;
if(ok){
		if(regexp.test(jmail.value)==false){alert("Inserire un indirizzo email corretto");jmail.focus();ok=false;}		
}	


if(ok==true){
var vaccetta=document.forms[0].accetto;
if(vaccetta.checked==false){alert("Per poter inviare il form è necessario consentire il trattamento dei dati ai sensi del D.Lgs. 196/03.");
vaccetta.focus();
ok=false;}}
if(ok)document.forms[0].submit();
}
