<?php

include("eff_setup2.php");

$smarty = new EFFSmarty;

$smarty->assign('title','DARPA\'s report to Congress on TIA');

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

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

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

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

<h1>Report to Congress regarding the
Terrorism Information Awareness Program</h1>

<p>
<strong>In response to Consolidated Appropriations Resolution, 2003, Pub. L.
No. 108-7, Division M, &#167; 111(b)</strong>
</p>


<p>
The report is available in the following formats:
</p>
<ul>
	<li><a href="TIA-report.pdf">PDF</a></li>
	<li><a href="TIA-report.html">HTML</a> (converted using Adobe\'s online conversion tool)</li>
	<li><a href="TIA-report.txt">Text</a> (converted using pdftotext)</li>
</ul>

</div>
';

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

?>
