function openAuguri(){
	window.open("popUp/Auguri/auguriPopUp.asp","Auguri",'width=270,height=292,status=0,scrollbars=0')
}


//whatbrowser()
//
//determina con quale browser l'utente è collegato e restituisce la sigla corrispondente
//
//argomenti:
//	nessuno
//
//valore di ritorno:
//	stringa	=	sigla corrispondente al browser con cui l'utente è collegato
//				NN4	=	netscape4
//				NN6	=	netscape6
//				ie	=	internet explorer
function whatbrowser(){
	var thisbrowser = "";	//sigla del browser utilizzato dall'utente
	var strAppVersion = navigator.appVersion;
	var blnIsIe4 = (strAppVersion.indexOf("MSIE 4") == -1) ? 0 : 1;
	var blnIsIe6 = (strAppVersion.indexOf("MSIE 6") == -1) ? 0 : 1;
	var blnIsMac = (strAppVersion.indexOf("Macintosh") == -1) ? 0 : 1;
	var blnIsIe5 = (strAppVersion.indexOf("MSIE 5") == -1) ? 0 : 1;
	
	//interrogo l'oggetto document per capire quale browser sta utilizzando l'utente
    if(document.layers){
        thisbrowser="NN4";
    }
    if(document.all){
		if(blnIsMac == 1) thisbrowser="ieMac";
        else if(blnIsIe4 == 1 || blnIsIe5 == 1) thisbrowser="ie4";
        else if(blnIsIe6 == 1) thisbrowser="ie6";
        else thisbrowser="ie4";
         
         //alert(thisbrowser);
    }
    if(!document.all && document.getElementById){
         thisbrowser="NN6";
    }
    
    
    //alert("blnIsMac = " + blnIsMac);
    return(thisbrowser);
}
function OpenCredits(){
	window.open("popup.htm","Crediti",'width=250,height=100,status=0,scrollbars=0')
}