function displayRecentlyViewedItems(productList) {
	var item = new Object();
	var innerHtml = '<table width="100%" cellpadding="8" cellspacing="0"><tr>';
	var product = new Object();
	for(item in productList) {
		if(productList[item].price){innerHtml += '<form method=post action="http://order.store.yahoo.com/cgi-bin/wg-order?vitadigest+' + productList[item].productId + '"><input name=vwcatalog type=hidden value=vitadigest><input name=vwitem type=hidden value=' + productList[item].productId + '>';};	
		innerHtml += '<td align="center">';
		innerHtml += '<a href="' + productList[item].url	+ '"><font size=2>';
		innerHtml += '<img src="' + productList[item].imageThumbnailUrl + '" border="0">';
		innerHtml += '<br>';
		innerHtml += productList[item].name;
		innerHtml += '</a>';
		if(productList[item].price && productList[item].salePrice){innerHtml += '<br><font style="font-size:11px">Regular Price:<b> ' + productList[item].price + '</b></font>';}else if(productList[item].price){innerHtml += '<br><font color="#cc0000"><b>Our Price: ' + productList[item].price + '</b></font>';};	
		if(productList[item].salePrice){innerHtml += '<br><font color="#cc0000"><b>Our Price: ' + productList[item].salePrice + '</b></font>';};	
		if(productList[item].price){innerHtml += '<br><input type="image" src="http://lib1.store.vip.sc5.yahoo.com/lib/vitadigest/buyNow3.gif" border="0" vspace=5>';};	
		innerHtml += '</font></td><td>&nbsp;</td>';
		if(productList[item].price){innerHtml += '</form>';};	
		
	}
	innerHtml += '</tr></table>';
	document.getElementById("recentlyViewedProducts").innerHTML = innerHtml;
}

