                                                    
<?php
//-->-->-->-->-->-->-->-->
//-- This function tries to simplify starting off a php page for the
//-- retrovox system. http://www.retrovox.com.au/ 
    
  function fnRetrovoxStartHtml 
    ($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='Retrovox, edit, file, unspecified'>
       <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 = '/'><img  
            src = '/ma.gif' border = '0'
            alt = 'home'  width = '150' height = '81'  
          align = 'bottom'></a> 
       </center>

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


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

                                    