//Arrotonda un numero a 'n' cifre decimali
function myRound(espressione, n) {
return Math.round(parseFloat(espressione)*(Math.pow(10,n)))/(Math.pow(10,n));
}
function nuovaFin(url, larghezza, altezza) {
window.open(url,'_blank','width='+larghezza+',height='+altezza+',toolbar=no,scrollbars=yes,resizable=yes');
}
?>
.
.