<?php

include_once("header.incl.php");

echo "
<body>
   <form name='frmNemo' enctype='multipart/form-data' action='". $this->SystemSettings[FULL_PATH] ."' method='post'>
   <div id=divPage style='vertical-align: top'>";
      echo $this->Header();
      echo $this->Menu();
      echo $this->Message();
      echo $this->ToolBar();
      // echo $this->Sandbox(); //sandbox() from _nemo.detail.cls.php
      echo "
           <!--[if IE]>
              <table border='0' cellpadding='2' cellspacing='1' width='100%' id='tblContent'>
            <![endif]-->
            <!--[if !IE]> -->
            <table border='0' cellpadding='2' cellspacing='1' width='100%' id='tblContent' style='min-height:0px;'>
            <![endif]-->
            <td align='left' valign='top' id='tdContentLeft' style='width:60% !important;'>
               <div id='divContentx'>
               ". $this->ContentLeft ."
               </div>
            </td>
            <td align='left' valign='top' id='tdContentRight' style='width:40% !important;'>
               <div id='divContentx'>
               ". $this->ContentRight ."
               </div>
            </td>
         </tr>
         <tr><td colspan='100%' style='background: transparent; padding: 0px;'>". $this->Content ."</td></tr>
      </table>";
      echo $this->Footer();
      echo"
   </div>
   </form>
</body>
</html>
";

?>