// JavaScript Document
function ScriviNota (testo, allineam, dimensione) {

//var TestoNota = document.NumPaginaForm.Testo_Nota.value;

document.write("      <TABLE width='"+dimensione+"' border='0' align='"+allineam+"' cellpadding='0' cellspacing='0'>");
document.write("        <TR>");
document.write("          <TD width='4' height='6' align='right'><IMG src='../ico/sf_note_angleft_up.gif' width='4' height='6' hspace='0' vspace='0' border='0'></TD>");
document.write("          <TD background='../ico/sf_note.gif' colspan='2'><IMG src='../ico/shim.gif' width='5' height='6' hspace='0' vspace='0' border='0'></TD>");
document.write("          <TD height='6' width='17'><IMG src='../ico/sf_note_angright_up.gif' width='17' height='6' hspace='0' vspace='0' border='0'></TD>");
document.write("        </TR>");
document.write("        <TR>");
document.write("          <TD width='4' align='right' valign='top' background='../ico/sf_note_left.gif'><IMG src='../ico/shim.gif' width='4' height='5' border='0' hspace='0' vspace='0'></TD>");
document.write("          <TD class='td_note' valign='top'><IMG src='../ico/freccia_note.gif' width='20' height='19' hspace='5' vspace='5'></TD>");
document.write("          <TD class='td_note'><SPAN class='main'>" +testo+ "</SPAN></TD>");
document.write("          <TD background='../ico/sf_note_right.gif' width='17'><IMG src='../ico/shim.gif' width='5' height='5'></TD>");
document.write("        </TR>");
document.write("        <TR>");
document.write("          <TD width='4' align='right' valign='top'><IMG src='../ico/sf_note_angleft_down.gif' width='4' height='14' hspace='0' vspace='0' border='0'></TD>");
document.write("          <TD background='../ico/sf_note_down.gif' colspan='2'><IMG src='../ico/shim.gif' width='5' height='5'></TD>");
document.write("          <TD align='left' valign='top' width='17'><IMG src='../ico/sf_note_angright_down.gif' width='17' height='14'></TD>");
document.write("        </TR>");
document.write("      </TABLE>");

}