<?php

include("eff_setup2.php");
$smarty = new EFFSmarty;


$vol = "20";
$num = "43";

$smarty->assign('title',"EFFector Vol. $vol, No. $num ");
$smarty->assign('breadcrumb','true');
$issue = array("EFFector" => "/effector/", "Volume $vol" => "/effector/$vol/");
$smarty->assign('effector',"true");
$content = "<div class=\"featuretext\"><pre>";
$content .= implode('', file($num.".txt"));
$content .= "</pre></div>";
$smarty->assign('issue',$issue);

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

?>
