<?php
//20150611 - changed to home from index.php - pj

   ini_set('display_errors', '1');
   error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE & ~E_WARNING);

   include_once("_framework/_nemo.basic.cls.php");

   $page = new NemoBasic();

   //unset SESSION
   //unset($_SESSION);
   session_destroy();

   $a = "35%";
   $page->Content = " 
   <div class='dora-LoginBox'>
      <table id='rrr'>
         <caption>Redirect</caption>
         <tr>
            <td>
               Hello,<br/>
               There is no content here. Please visit www.sawis.co.za.    
            </td>        
         </tr>
      </table> 
   </div>";

   $page->Display();

?>