      
      function start_menu(){
               document.write('<table cellpadding="0" cellspacing="0" border="0" width="298" style="font-family:tahoma;font-weight:bold;font-size:10px;color:#3b4b1c" background="/images/menu_bg.png">'+
                              '<tr><td colspan=3><img src="/images/menu_start.png" width=298 height=26 border=0 alt=""></td></tr>');
      }
      
      function one_menu(nameM,urlM,curOk){
               document.write('<tr height=1>'+
                              '<td style="width:29px"></td>'+
                              '<td bgcolor="#5f8f2d" colspan="2"></td>'+
                              '</tr>'+
                              '<tr height=1>'+
                              '<td style="width:29px"></td>'+
                              '<td bgcolor="#d6fd8d" colspan="2"></td></tr>'+
                              '<tr>'+
                              '<td style="width:29px"></td>');
               if(curOk){               
               document.write('<th style="width:269px;padding:5px;color:#FFFFFF" background="/images/menu_bg_ov.png">'+nameM+'</th>'+
                              '<td style="width:17px;" background="/images/menu_bg_ov.png"><img src="/images/menu_arrow_ov.gif" width=17 height=27 border=0 alt=""></td>'+
                              '</tr>');
               } else {
               document.write('<td style="width:269px;padding:5px;cursor:hand" onClick="document.location=\''+urlM+'\'">'+nameM+'</td>'+
                              '<td style="width:17px;"><img src="/images/menu_arrow.gif" width="17" height="27" border="0" alt="arrow"></td>'+
                              '</tr>');
               }                
      }
      
      function end_menu(){
               document.write('<tr height="1">'+
                              '<td style="width:29px;"></td>'+
                              '<td bgcolor="#5f8f2d" colspan="2"></td>'+
                              '</tr>'+
                              '<tr height="1">'+
                              '<td style="width:29px"></td>'+
                              '<td bgcolor="#d6fd8d" colspan="2"></td>'+
                              '</tr>'+
                              '<tr><td colspan=3><img src="/images/menu_end.png" width="298" height="26" border="0" alt="menu"></td></tr>'+
                              '</table><br>');
      }              