if ( Cart_is_empty()) {
document.write('<table><tr><td><img alt="Your cart is empty!" title="Your cart is empty!" src="http://smallcutegifts.com/general/shop/viewcart_e.gif"/></td><td><font color="#990000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Your cart is empty.</font><br/></td></tr></table>');
} else {
document.write('<table><tr><td><a href="http://smallcutegifts.com/viewcart.html"><img alt="View your cart" title="View your cart" src="http://smallcutegifts.com/general/shop/viewcart.gif"/></a></td><td>&nbsp;You have <font color="#990000">');
Print_total_products(true);
document.write('</font> in your cart<br />');
document.write('&nbsp;At a cost of <font color="#990000"> ');
Print_total(true);
document.write('</font></td></tr></table>');
}