//Code is under active development.
//Feel free to use at your own risk.
//No copyright asserted.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
  <meta http-equiv="content-type" content="text/html;charset=utf-8">
  <meta name="generator" content="PSPad editor, www.pspad.com">
  <title>Prowl</title>
  <script type="text/javascript">
  function toggle_disp(content) {
    current_view = document.getElementById(content).style;
        
    current_view.display = (current_view.display=="block")?"none":"block";
    return false;      
  }
  </script>
    
<?php 

include "logo.html";

if (isset(
$_GET['prowl'])) {
  
?> 
  
  <table align="center" cellpadding="5" bgcolor="#ECECEC" width="700px">
    <tr align="center">
      <td>        
        <form method="GET" action="" id="query">
        <input type="text" name="prowl" size="70" value="<?php echo $_GET['prowl'?>"/>
        <input type="submit" name="submit" value="Submit"/>
        </form>
        <a href="" onclick="toggle_disp('example'); return false;">Example Query Syntax</a>            
        <ul id="example" style="display: none;">
          <li>Audit: audit http://tyaga.org/prowl/reports/newicbblogspotcom_2008_units.txt</li>
          <li>Audit: audit icb2.blogspot.com units report for 2008</li>
          <li>Evaluation: replace the "audit" keyword above with "eval"</li>
        </ul>   
      </td>
    </tr>  
  </table>
  <br /><br />
  
  <?php
  
include("reporter.php");
}
else {
  
?>
  <br /><br /><br />  
  <table align="center" border="0" cellpadding="10" width="700px">
    <tr>  
      <td>
      <h3>Welcome!</h3>
      <p>Thanks for your interest in using and/or co-developing Prowl. Please explore the site using the links above.</p>
      <h3>News</h3>
      <p>Please visit and subscribe to <a href="http://groups.google.com/group/prowl-users?hl=en">Prowl-Users</a> group to receive updates and contribute to the discussion.</p>        
      </td>
    </tr>    
  </table>
  <?php
  

?>


</body>
</html>
  
1