

<?php
// Permanent redirection
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.eff.org/wp/effs-top-12-ways-protect-your-online-privacy"); 
exit();
?>




<?php

include("eff_setup2.php");
$smarty = new EFFSmarty;
$smarty->assign('title','Privacy Top 12');
$smarty->caching = true;
$smarty->assign('breadcrumb','true');
$issue = array("Privacy" => "/Privacy/");
$smarty->assign('issue',$issue);
//$smarty->assign('cc',"false");

$content  = '

<div id="featuretext">

';

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

$content .= '

</div>
';

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

?>
