// JavaScript Document
// APERTURE NUOVE FINESTRE E POPUP //

/*apertura finestra con parametri nel codice xhtml*/
function MM_openBrWindow (theURL,winName,features) {
window.open(theURL,winName,features);
}

/*apertura finestra per link esterni (nome finestra variabile) */
function apri(file)
    {
 var prop = "toolbar=yes,location=yes, directories=yes, status=yes, menuBar=yes, scrollbars=yes, resizable=yes, width=800, height=600";
var ran_unrounded=Math.random()*1000;
 var ran_number=Math.round(ran_unrounded);
       newwin = window.open(file,'finestra'+ran_number,prop);
       newwin.focus();
 return false;
    }
	
/*apertura finestra per link esterni (nome finestra fisso)*/
 function aprifinestra(file)
    {
 var prop = "toolbar=yes,location=yes, directories=yes, status=yes, menuBar=yes, scrollbars=yes, resizable=yes, width=800, height=600";
       newwin = window.open(file,'finestra',prop);
       newwin.focus();
 return false;
    }
