                                                            
<?php
//-->-->-->-->-->-->-->-->
//-- This function tries to simplify starting off a php page for the
//-- retrovox system. http://www.retrovox.com.au/ 
    
  function fnStartHtml 
    ($sPageTitle, $sStyleSheet = '/product-data/admin-style.css')
  {

     $sReturn = "";
     $sReturn =
      "
      <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 3.2//EN'>
      <html>
       <META HTTP-EQUIV='Content-Type' CONTENT='text/html; CHARSET='iso-8859-1'>
       <META HTTP-EQUIV='Keywords' CONTENT=''>
       <META HTTP-EQUIV='Description'
		CONTENT=\"$sPageTitle\">
	      <LINK REV='made' HREF='mailto:matth3wbishop@yahoo.com'>

      <head><title>$sPageTitle</title>
      <link   rel = 'stylesheet'  type = 'text/css'
             href = '$sStyleSheet'>

      </head>
      <body>
      <center>
        <a href = '/'></a> 
       </center>

      <center><h1>$sPageTitle</h1></center>";
      
      return $sReturn;
   } //-- fnStartHtml


//--<--<--<--<--<--<--<--<
?>

                                            