var w = null;
function se_openBrWindow(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();
}
