function getBrowserName() {return navigator.appName}function hideElement(id) {document.getElementById(id).style.display = 'none';}function showElement(id) {document.getElementById(id).style.display = '';}function openPrintPopup(id) {var browser = getBrowserName();if (browser == "Microsoft Internet Explorer") {try {var div = window.opener.document.getElementById(id);var popup = document.getElementById("popup");popup.innerHTML = div.outerHTML;hideElement('stampa');} catch(err) {document.write('Errore nella creazione della pagina di stampa.');}} else {try {var div = window.opener.document.getElementById(id);var div2 = div.cloneNode(true);document.getElementById("popup").appendChild(div2);hideElement('stampa');} catch(err) {document.write('Errore nella creazione della pagina di stampa.');}}}