<?php

include("eff_setup2.php");

$smarty = new EFFSmarty;

$smarty->assign('title','Morpheus Appeal Brief');

// if breadcrumb == true, then it fill in the right trail in the issue
// array
$smarty->assign('breadcrumb','false');

// example:
//$issue = array("Issues" => "/issues/", "Privacy" => "/issues/privacy/", "TIA" => "/issues/privacy/tia/");

$smarty->assign('issue',$issue);

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

<h1>Morpheus Appeal Brief</h1>

<p><a href="20030917_morpheus_appeal_brief.pdf">Download the PDF</a> (140k)</p>


</div>
';

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

?>
