require ('pre.php');
require ('news_utils.php');
site_header(array('title'=>"Open Channel Foundation - Industry News",'level'=>'foundation'));
print "
Industry News
\n";
// Here is the part where we bring in the Open Source News
$rs_info = db_query("SELECT news from foundation_info", 0);
// break;
if (!$rs_info) exit_error("Database Error", db_error());
$row_info = db_fetch_array($rs_info);
print "";
echo stripslashes($row_info['news']);
print "\n";
site_footer(array('level'=>'foundation'));
?>