//funzione serve per variare i caratteri
function fsize(idx,sz){ 
  var cells=document.getElementsByTagName('TD')
  for(var k=0;k<cells.length;k++){
    if(cells[k].className==idx){
      cells[k].style.fontSize=sz
    }
  }
}

//funzione serve per stampare
<!--
function printpage() {
if (window.print) {
window.print();
} else {
alert('To print this page, select Print from the file menu.');
}
}
// -->

//apertura popup 1
function apri(url) { 
newin = window.open(url,'titolo','scrollbars=no,resizable=yes, width=400,height=200,status=no,location=no,toolbar=no');
} 


//script per apertura pop up2

function apri2(url) { 
newin2 = window.open(url,'titolo','scrollbars=no,resizable=yes, width=347,height=515,status=no,location=no,toolbar=no');
} 

