function DrawStart(level) {
   var path = 'pj_files/gr';
   if (level == 1) path = '../' + path;
   if (level == 2) path = '../../' + path;

   DrawPageLeftPart(path, true);
   InitLeftMenu (MENU_PJ, level);
}



function DrawBottomButtons(level) {
   var img_path = 'pj_files/gr';
   if (level == 1) img_path = '../' + img_path;
   if (level == 2) img_path = '../../' + img_path;

   var href_path = '';
   if (level == 1) href_path = '../' + href_path;
   if (level == 2) href_path = '../../' + href_path;

   document.write('  &nbsp;');
   document.write('  <div align="center"><center><table border="0" width="80%">');
   document.write('    <tr>');
   document.write('      <td align="center"><a href="' + href_path + 'pocketjig.htm">\
      <img src="' + img_path + '/but_pjig.gif" border="0" width="112" height="54"></a></td>');
   document.write('      <td align="center"><a href="' + href_path + 'index.htm">\
      <img src="' + img_path + '/but_home.gif" border="0" width="72" height="54"></a></td>');
   document.write('      <td align="center"><a href="' + href_path + 'support.php">\
      <img src="' + img_path + '/but_contact.gif" border="0" width="90" height="54"></a></td>');
   document.write('    </tr>');
   document.write('  </table>');
   document.write('  </center></div>');
   document.write('  &nbsp;');
}






