<?php

include("eff_setup2.php");
$smarty = new EFFSmarty;
$smarty->assign('title','Written testimony to Select Committee on Culture, Media and Sport');
$smarty->caching = true;
$smarty->assign('breadcrumb','true');
$issue = array("IP" => "/IP/");
$smarty->assign('issue',$issue);
//$smarty->assign('cc',"false");

$content  = '

<div id="featuretext">

';

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

$content .= '

</div>
';

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

?>
