<?php
/*

*/
error_reporting(7);

$templatesused='cssfile';

require('./global.php');
   
if ((!isset($action) or $action=="")) {
  $action="show";
}


// ###################### Start do output #######################
if ($action=="show") {
  
  header("Content-Type: text/css; name=\"css.css\"");
  header("Content-Disposition: inline; filename=\"css.css\"");
  eval("dooutput(\"".gettemplate('cssfile')."\");");
}

?>
