<?php

include("eff_setup2.php");

$smarty = new EFFSmarty;
$smarty->assign('title','E-voting');
$smarty->assign('breadcrumb','true');
$issue = array("Activism" => "/Activism/", "E-voting" => "/Activism/E-voting/");
$smarty->assign('issue',$issue);

$content  = '
<div id="featuretext">
';

$filename = 'protection.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);

$content .= '</div>';

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