<!--
function showManfLink(mafName){
	var link	= "<a class='bold' href='http://shop.talleycom.com/store/results.jsp?srch=_root&amp;srch_sby=PartNumber&amp;srch_manuf=" + mafName +"'>" 
					+ "Purchase Online &gt;&gt;" + "</a>";
					
	document.writeln(link);
}
function showManfLinkButton(mafName){
		var link	= "<a href='http://shop.talleycom.com/store/results.jsp?srch=_root&amp;srch_sby=PartNumber&amp;srch_manuf=" + mafName +"'>" 
					+ "<img src='../images/button_buy_online.GIF' border='0' width='136' height='30' align='middle' alt='Purchase Online &gt;&gt;'/>" + "</a>";
					
	document.writeln(link);
}
/*
 	Creates a link base on the product description which can include: a part number, short description, or manufacturer name
*/
function showProdLink(desc){
	var link = "<a href='http://shop.talleycom.com/store/results.jsp?bsrch=_root&amp;bsrch_sby=PartNumber&amp;bsrch_text=" + desc + "'>"
				+ "<img src='../images/button_buy_online.GIF' border='0' width='136' height='30' align='middle' alt='Purchase Online &gt;&gt;'/>" + "</a>";
	document.writeln(link);
}
function showCatLink(id){
	var link = "<a href='http://shop.talleycom.com./store/category.jsp?cat=" + id + "&amp;clr=1'>"
			+ "<img src='../images/button_buy_online.GIF' border='0' width='136' height='30' align='middle' alt='Purchase Online &gt;&gt;'/>" + "</a>";
	document.writeln(link);
}
//-->