<!--

var w = null;
function openWin(theURL,winName,features) { //v2.0
	if(w==null || w.closed) w = window.open("", winName,features); //per la prima volta
	w.location.href = theURL;
	w.focus();
}


//-->

