// JavaScript Document
//Mostra messaggio sulla barra di stato
function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

//Apri finestra Browser
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//Funzione di controllo del Browser e stampa
function doprint(){
if (!window.print){
alert("Funzione non supportata dal tuo Browser! Usa il menù file/stampa per favore.")
return
}
window.print()
}
