<?php

include("eff_setup2.php");

$smarty = new EFFSmarty;

$smarty->assign('title','WIPO Resources');
$smarty->caching = true;

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

// example:
$issue = array("IP" => "/IP/", "WIPO" => "/WIPO/");

//Creative Commons - If you need to turn OFF the CC license, set cc = false
//$smarty->assign('cc',"false");

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

$content  = '

<div id="featuretext">

';

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

$content .= '

</div>
';

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

?>
