if (getCartItem(3) < 1)
{
document.write("Your basket is empty")
}
else
{
document.write("Basket Items:   ")
document.write(getCartItem(3));
if (getCartItem(3) > 1)
{
}
document.write("<br />Sub Total:    " + getCartItem(1));
}