function writeHeaderInner(dove1,dove2,dove3)
{
   document.write(''
   +         '<!-- Inizio tabella DoveMiTrovo -->'
   +         '<table cellpadding="0" cellspacing="0" border="0" width="195">'
   +            '<tr>'
   +               '<td colspan="3"><img src="images/dove_top.gif" width="195" height="33" border="0" alt=""></td>'
   +            '</tr>'
   +            '<tr>'
   +               '<td><img src="images/dove_left.gif" width="14" height="52" border="0" alt=""></td>'
   +               '<td class="contextMenu" valign="top">'
   +               '<table cellpadding="0" cellspacing="0" border="0">'
   +                  '<tr>'
   +                     '<td valign="bottom"><img src="images/dove_list.gif" width="13" height="9" border="0" alt=""></td>'
   +                     '<td valign="bottom" colspan="3" class="contextMenu">' +dove1+ '</td>'
   +                  '</tr>');

   if (dove2) {
   document.write(''
   +               '<tr>'
   +                  '<td><img src="images/dove_cong.gif" width="13" height="18" border="0" alt=""></td>'
   +                  '<td valign="bottom"><img src="images/dove_list.gif" width="13" height="9" border="0" alt=""></td>'
   +                  '<td colspan="2" class="contextMenu" valign="bottom">' +dove2+ '</td>'
   +               '</tr>'); }
   else {
   document.write(''
   +               '<tr>'
   +                  '<td></td>'
   +                  '<td></td>'
   +                  '<td></td>'
   +               '</tr>'); }
   

   if (dove3) {
   document.write(''
   +               '<tr>'
   +                  '<td><img src="images/ghost.gif" width="1" height="1" border="0" alt=""></td>'
   +                  '<td><img src="images/dove_cong.gif" width="13" height="18" border="0" alt=""></td>'
   +                  '<td valign="bottom"><img src="images/dove_list.gif" width="13" height="9" border="0" alt=""></td>'
   +                  '<td valign="bottom" class="contextMenu">' +dove3+ '</td>'
   +               '</tr>'); }
   else {
   document.write(''
   +               '<tr>'
   +                  '<td width="1"></td>'
   +                  '<td width="13"></td>'
   +                  '<td width="13"></td>'
   +                  '<td width="127"></td>'
   +               '</tr>');}


   document.write(''
   +               '</table>'
   +               '</td>'
   +               '<td><img src="images/dove_right.gif" width="14" height="52" border="0" alt=""></td>'
   +            '</tr>'
   +            '<tr>'
   +               '<td width="14"><img src="images/dove_bottom1.gif" width="14" height="12" border="0" alt=""></td>'
   +               '<td width="167"><img src="images/dove_bottom2.gif" width="167" height="12" border="0" alt=""></td>'
   +               '<td width="14"><img src="images/dove_bottom3.gif" width="14" height="12" border="0" alt=""></td>'
   +            '</tr>'
   +         '</table>'
   +         '<!-- Fine tabella DoveMiTrovo -->');
}


function writeBrothers()
{
   document.write(''
   +   '<table cellpadding="0" cellspacing="0" border="0">'
   +      '<tr>'
   +         '<td colspan="3"><img src="images/vedi2_top.gif" width="160" height="26" border="0" alt=""></td>'
   +      '</tr>'
   +      '<tr>'
   +         '<td width="15" rowspan="2" background="images/eventi_left.gif" valign="top"><img src="images/vedi2_angle.gif" width="15" height="50" border="0" alt=""></td>'
   +         '<td width="130" class="contextMenu" height="1"><img src="images/ghost.gif" width="130" height="1" border="0" alt=""></td>'
   +         '<td width="15" rowspan="2" background="images/vedi_right.gif"><img src="images/ghost.gif" width="15" height="1" border="0" alt=""></td>'
   +      '</tr>'
   +      '<tr>'
   +         '<td class="contextMenu" valign="top" height="38">'
   +         '<!-- Inizio tabella VEDI-CONTENT -->'
   +         '<table cellpadding="0" cellspacing="0" border="0">');

   for (c=0;c<theBrothers.length;c++)
   {
      if (pagina == theBrothers[c][0])
      {
         document.write(''
         +         '<tr>'
         +            '<td colspan="2"><img src="images/ghost.gif" width="130" height="6" border="0" alt=""></td>'
         +         '</tr>'
         +         '<tr>'
         +            '<td width="17" class="contextMenu" valign="top"><img src="images/vedi_list2.gif" width="17" height="12" border="0" alt=""></td>'
         +            '<td width="113" class="contextMenu" valign="top"><span class="grayText">' +theBrothers[c][0]+ '</span></td>'
         +         '</tr>');
      }
      else
      {
         document.write(''
         +         '<tr>'
         +            '<td colspan="2"><img src="images/ghost.gif" width="130" height="6" border="0" alt=""></td>'
         +         '</tr>'
         +         '<tr>'
         +            '<td width="17" class="contextMenu" valign="top"><img src="images/vedi_list.gif" width="17" height="12" border="0" alt=""></td>'
         +            '<td width="113" class="contextMenu" valign="top"><a href="' +theBrothers[c][1]+ '" class="vediAnche">' +theBrothers[c][0]+ '</a></td>'
         +         '</tr>');
      }
   }

   document.write(''
   +         '</table>'
   +         '<!-- Fine tabella VEDI-CONTENT -->'
   +         '</td>'
   +      '</tr>'
   +      '<tr>'
   +         '<td colspan="3"><img src="images/eventi_bottom.gif" width="160" height="21" border="0" alt=""></td>'
   +      '</tr>'
   +   '</table>');
}