function nuova_finestra(url, nome, largo, alto, barre) {
   sinistra = (screen.width) ? (screen.width - largo) / 2 : 100;
   sopra = (screen.height) ? (screen.height - alto) / 2 : 100;
   opzioni = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + barre + ',resizable=0,width=' + largo + ',height=' + alto + ',left=' + sinistra + ',top=' + sopra + '';
        window.open(url,nome,opzioni)
 }

function uno(src,color_entrada) {
                src.bgColor=color_entrada;src.style.cursor="hand";
        }
function dos(src,color_default) {
                src.bgColor=color_default;src.style.cursor="default";
        }
