// 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<br>');
document.write(itemCount);
((itemCount > 1) || (itemCount == 0)) ? document.write(' items') : document.write(' item');
document.write('<br>in your cart<br>');
document.write('<a href="' + cartPage + '">view cart</a>');
document.write('</font><br>');