function stampaPostit(data,titolo,testo,note) {

  if (testo!="") {

         document.write("                              <font face=\"Arial,Verdana\" size=\"2\" color=\"#6699CC\">");

         document.write("                              <span style=\"background-color: #F8F534\"><b>POST-IT</b></span>");

         document.write("                              </font>");                              

         document.write("                              <font face=\"Arial,Verdana\" size=\"1\" color=\"#CC0000\"><br><br></font>");

         document.write("                              <table border=\"0\" width=\"160\" cellspacing=\"0\" cellpadding=\"0\">");

         document.write("                               <tr>");

         document.write("                                 <td width=\"160\" colspan=\"3\"><img border=\"0\" src=\"images/postit_sopra.gif\"></td>");

         document.write("                               </tr>");

         document.write("                               <tr>");

         document.write("                                 <td width=\"5\" height=\"115\" bgcolor=\"#F8F534\">");

         document.write("                                    <font face=\"Arial,Verdana\" size=\"1\" color=\"#010167\">&nbsp;</font>");

         document.write("                                 </td>");                                    

         document.write("                                 <td width=\"150\" height=\"115\" bgcolor=\"#F8F534\" valign=\"top\" align=\"justify\">");

         document.write("                                    <font face=\"Arial,Verdana\" size=\"1\" color=\"#010167\">");

         document.write("                                    ");

         document.write("                                    <DIV ALIGN=\"center\"><H6><U>");

         document.write(data);

         document.write("                                    </U><BR><I><B>");

         document.write(titolo);

         document.write("                                    </I></B><BR></H6>");

         document.write(testo);

         document.write("                                    <H6><U>");

         document.write(note);

         document.write("                                    </U></DIV>");

         document.write("                                    </font>");

         document.write("                                 </td>");                                     

         document.write("                                 <td width=\"5\" height=\"115\" bgcolor=\"#F8F534\">");

         document.write("                                    <font face=\"Arial,Verdana\" size=\"1\" color=\"#010167\">&nbsp;</font>");

         document.write("                                 </td>");                                    

         document.write("                               </tr>");

         document.write("                             </table>");

  } else {

         document.write("&nbsp;");

  }

}






