<?php

include("eff_setup2.php");

$smarty = new EFFSmarty;
$smarty->assign('title','USA PATRIOT Act');
$smarty->assign('breadcrumb','true');
$issue = array("Privacy" => "/Privacy/", "Surveillance" => "/Privacy/Surveillance/", "Terrorism" => "/Privacy/Surveillance/Terrorism/");
//$smarty->assign('cc',"false");
$smarty->assign('issue',$issue);

$content  = '

<div id="featuretext">

';

$filename="20011025_hr3162_usa_patriot_bill_content.html";
$content .= implode('', file($filename));

$content .= '

</div>
';


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

?>
