// NebuCart - The JavaScript Shopping Cart
// by Nebulus Designs
//
// Copyright 1999-2001 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 nebucart@nebulus.org
// or visit http://nebucart.nebulus.org

// ********************************************
// 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>');