<!--
function showSubMenu( _Level )
{
	var thisLevel = document.getElementById( _Level );
	thisLevel.style.display = "block";
}
	
function showCart()
{
  document.cart.submit();
}

function addCartItem()
{
  document.cartitem.submit();
}
// -->