function productcel(code,image,page,comment)
{ 
document.write("<td><table width='100' border='0' align='center'><tr><td height='100' colspan='2'>");
document.write("<a href='../products/" + page + "'>");
document.write("<img height='100' src='../pics/products/" + image + "' width='100' border='0' alt='" + code + "'></a></td></tr>");
document.write("<tr><td width='50'><a href='../products/" + page + "'>");
document.write(code + "</a></td><td width='100' align='right'>");
if (comment == "AMD") 
	{document.write("<div id='amd'>AMD Recommended</div>");}
else
	{
	if (comment == "VIA")
		{document.write("<div id='via'>VIA Recommended</div>");}
	else
		{document.write("<div id='comment'>" + comment + "</div>");}
	}
document.write("</td></tr></table></td>");
}

function toprow(content)
{ 
document.write("<tr><td colspan='2' bgcolor='#9CA5C6'><b>" + content + "<b></td></tr>"); 
}

function row(contentleft,contentright)
{ 
document.write("<tr><td width='10' class='leftcell'>" + contentleft + "</td>"); 
document.write("<td class='rightcell'>" + contentright + "</td></tr>"); 
}
