//***************************************************
//***** CODE COPYRIGHT PRACTICAL DATA, INC 2004 *****
//***** - USE WITHOUT PERMISSION IS PROHIBITED ******
//***************************************************
function displayShoppingCart(shoppingCart) {
	
	var itemsInCart = shoppingCart.products.length;
	
//*****************************************
//********** SHOPPING CART HTML ***********
//*****************************************
		var s = '';
		if(itemsInCart == 1){s = '';}else{s = 's';}
		var innerHTML = '';

	 	innerHTML += '<table border="0" cellpadding="0" cellspacing="0">';
		innerHTML += '<tr>';
		innerHTML += '<td align="center"><span class="fcGray">Item' + s + ' in Bag: </span><span class="fcPink">';
		innerHTML += itemsInCart + '</span> &nbsp;&nbsp; ';
		innerHTML += '</td>';
		innerHTML += '<td align="center"><span class="fcGray">Subtotal: </span><span class="fcPink">';
		innerHTML += formatCurrency(shoppingCart.subtotal) + '</span> &nbsp;&nbsp; ';
		innerHTML += '</td>';
		innerHTML += '</tr>';
		innerHTML += '<tr><td colspan="2"><img src="http://site.silverparrot.com/images/spacer.gif" height="8" class="imgFF"></td></tr>';
		innerHTML += '<tr>';
		innerHTML += '<td><a href="http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17907582260481"><img src="http://site.silverparrot.com/images/shoppingBag.gif" border="0" class="imgFF"></a></td>';
		innerHTML += '<td><a href="http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17907582260481"><img src="http://site.silverparrot.com/images/secureCheckout.gif" border="0" class="imgFF"></a></td>';
		innerHTML += '</tr></table>';
	
	//*********************************
	//***** DISPLAY FLOATING CART *****
	//*********************************	
	document.getElementById("shoppingCartDisplay").innerHTML = innerHTML;
}

