// NebuCart - The JavaScript Shopping Cart
//
// Copyright 1999-2006 all rights reserved.

// None of this script may be redistributed or sold
// without the authors express consent.
// Violations of copyright will be prosecuted.

// If you would like to use NebuCart,
// email us at admin@javascriptcart.com
// or visit http://www.javascriptcart.com

// ********************************************
// NebuCart Mini Cart View                    *
// ********************************************
// DO NOT CHANGE ANYTHING BELOW THIS LINE!    *
// ********************************************

var itemCount = 0;
for(tmpCount = 0; tmpCount < Cart.length; tmpCount++){
	itemCount += Number(Cart[tmpCount].qty);
}
document.write('<font face=' + myFont + ' size=-2>');
document.write('You have ');
document.write(itemCount);
((itemCount > 1) || (itemCount == 0)) ? document.write(' items ') : document.write(' item ');
document.write(' in your cart<br>  ') ;
document.write(' <a href="' + cartPage + '"><img src="https://www.cdshowplace.com/images/viewcart.gif" width="75" height="20" border="0" alt="View Cart"></a>');
document.write(' </font>');