<?php
require_once ('connect.php');
require_once ('inc/dao.inc');

$cj_awards_object = &new CJ_Awards();

//$smarty->debugging=1;
$smarty->assign_by_ref('CJ_awards_object', $cj_awards_object);





if ($_GET['kind'] == "print"){
	
	$smarty->display('print.tpl');
}else{
	$smarty->assign('content','print_view.tpl');
	$smarty->display('index.tpl');
}




?>