function openWindow(url,nome,option) {			
	var win = window.open(url,nome,option);	
	if (win == null) {		
		var testo = "\t\t\tAVVISO AGLI UTENTI DI WINDOWS XP / SP2";		
		testo += "\nSP2 introduce una funzionalità che blocca l'apertura di finestre indipendenti ";		
		testo += "rispetto alla pagina principale che si sta visitando.\n";		
		testo += "Stiamo lavorando per risolvere tale problematica;nel frattempo, per sfruttare pienamente le ";		
		testo += "funzionalità del sito, effettua le modifiche di seguito riportate:\n";		
		testo += "\nVai nel Menù Strumenti (sulla barra superiore), poi clicca su Opzioni Internet e quindi seleziona la scheda Privacy\n";		
		testo += "Guarda in basso, nel riquadro Blocco popup. Premi su Opzioni...\n";		
		testo += "Dove c'è scritto \"Indirizzo del sito Web da cui consentire i popup\", scrivi www.majorbit.com, quindi";		
		testo += " premi su Aggiungi. Quindi premi su Ok ed esci dalla finestra.\n";		
		testo += "\nCi scusiamo per il momentaneo disagio, ma esso dipende esclusivamente dall'uso del Service Pack 2\n";		
testo += "\nNel caso ci siano ancora problemi, puoi contattarci via e-mail oppure telefonicamente";		
alert(testo);	}}

function f_open_window_max( aURL, aWinName )
{
   var wOpen;
   var sOptions;

   sOptions = 'status=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes';
   sOptions = sOptions + ',width=' + (screen.availWidth - 10).toString();
   sOptions = sOptions + ',height=' + (screen.availHeight - 122).toString();
   sOptions = sOptions + ',screenX=0,screenY=0,left=0,top=0';

   wOpen = window.open( '', aWinName, sOptions );
   wOpen.location = aURL;
   wOpen.focus();
   wOpen.moveTo( 0, 0 );
   wOpen.resizeTo( screen.availWidth, screen.availHeight );
   return wOpen;
}

function openLBBrowser(url) {
	f_open_window_max(url,"browser");
}

function openDFBrowser(url) {
	if (!window.opener.closed) {
		window.opener.location.href = url;
		window.opener.focus();
	} else {
		f_open_window_max(url,"main");
	}
}
<!--

/***********************************************
* Required field(s) validation v1.10- By NavSurf
* Visit Nav Surf at http://navsurf.com
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/


// -->