<?php
include("eff_setup2.php");
$smarty = new EFFSmarty;
$smarty->assign('breadcrumb','true');
$issue = array("Privacy" => "/Privacy/","Printers" => "/Privacy/printers/");
$smarty->assign('issue',$issue);

$content  = '

<div id="featuretext">

';

$filename="docucolor-guide.html"; 

$content .= implode('', file($filename));

// get title
preg_match("/(title.*>)(.*?)(<\/title)/i",$content, $title);
if ($title[2]) { $smarty->assign('title',$title[2]); } 

// remove title
$tag = "title";
$content = preg_replace("/<" . $tag . ">(.|\s)*?<\/" . $tag . ">/","",$content);

if (substr($filename, -4) != "html") { $content .= "</pre>\n"; }

$content .= '

</div>
';

global $REQUEST_URI;
$smarty->assign('content',$content);
$smarty->display('generic.tpl',$REQUEST_URI);

?>
