<?php

include("eff_setup2.php");

$smarty = new EFFSmarty;

$smarty->assign('title','Cooperative Computing Awards');


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

// example:
$issue = array("Awards" => "/awards/");

//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">

<DIV ALIGN="CENTER">
<IMG SRC="images/coop-map.png" ALIGN=ABSMIDDLE WIDTH="356" HEIGHT="80"
ALT="EFF Cooperative Computing Awards" usemap="#coop-map" border="0">
<MAP NAME="coop-map">
<AREA SHAPE="RECT" ALT="Intro" COORDS="9,9,350,54" HREF="coop.php">
<AREA SHAPE="rect" alt="Rules" COORDS="16,58,56,77" HREF="coop-prime-rules.php">
<AREA SHAPE="rect" ALT="Frequently Asked Questions" COORDS="63,58,216,77" HREF="coop-faq.php">
<AREA SHAPE="rect" ALT="News/Status" COORDS="225,58,270,77" HREF="coop-news.php">
<AREA SHAPE="rect" ALT="Resources" COORDS="277,58,344,77" HREF="coop-prime-info.php">
</MAP>
<BR>
</DIV>
';

$filename="coop-faq.html";
//$fp=fopen($filename,"r");
//$content .= fread($fp, filesize($filename));
//fclose($fp);
$content .= implode('', file($filename));

$content .= '
<H3>For more information</H3>

<P>
<A HREF="http://www.eff.org/awards">EFF Awards</A><BR>
<A HREF="http://w2.eff.org/awards/coop-prime-rules.php">Official rules for the awards</A><BR>
<A HREF="http://w2.eff.org/awards/coop-news.php">Cooperative Computing Award News</A><BR>
<A HREF="http://w2.eff.org/awards/coop-faq.php">Frequently Asked Questions about the awards</A><BR>
<A HREF="http://w2.eff.org/awards/coop-prime-info.php ">Prime Number Resources and Information</A>
</P>

</div>
';

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

?>
