<?php include("config.php"); ?>
<?php include("header.inc.php"); ?>
<html>
<head>
<title><? print $site_name; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="main.css" type="text/css">
<?
$result=mysql_query("select coffee_name,coffee_details from types WHERE id = \"$id\";");
while($myrow=MySQL_fetch_array($result))
{
$coffee_name=$myrow["coffee_name"];
$coffee_details=$myrow["coffee_details"];
}
?></head>
<body bgcolor="#FFFFFF" text="#000000">
<table border="0" cellspacing="0" cellpadding="0" width="95%">
<tr>
<td width="<? print $side_nav_table; ?>" valign="top"> </td>
<td rowspan="2" width="10"><img src="images/spacer.gif" width="14" height="23"></td>
<td> </td>
</tr>
<tr>
<td width="<? print $side_nav_table; ?>" valign="top" height="35">
<?php include("left.inc.php"); ?>
</td>
<td width="" height="35">
<table width="100%" border="0" cellspacing="0" cellpadding="1" bgcolor="#000000">
<tr>
<td height="50">
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#FF9900" height="1">
<tr>
<td><img src="fake_spacer.gif" width="1" height="1"></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="2" bgcolor="e0e0e0">
<tr>
<td class="tbl_hdr" align="center" width="98%" > <font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b>
<? echo "<H4>$coffee_name"; ?>
</b></font> </td>
<td class="tbl_hdr" align="center" width="2%" ><a href="#" onClick="window.print();return false"><img src="images/print.gif" alt="PRINT" border="0" width="20" height="20"></a></td>
</tr>
<tr>
<td class="tbl_info" colspan="2"> <font face="Verdana, Arial, Helvetica, sans-serif" size="2">
<? echo "•<b>$coffee_name</b>"; ?>
<br>
<? echo "$coffee_details"; ?>
</font> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<?php include("footer.inc.php"); ?>
</body>
</html>