var rootURL = "" var rootImgUrl = "" NomiGiorni = new Array("Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"); // ================================================================================================== function displayStatusMsg(msg){ // ================================================================================================== if(msg=="") { window.status = ""; } else { window.status = "" + msg; } return true; } // ================================================================================================== function AlertMsg(msg){ // ================================================================================================== alert( msg + "\n\n"); } // ================================================================================================== function right(e) { // Funzione che riproduce il messaggio di alert in caso di uso del tasto destro del mouse // ================================================================================================== if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) { return false } else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { AlertMsg("L'utilizzo del tasto destro del mouse è stato disabilitato."); return false; } return true; } displayStatusMsg('');