function AddedToCart()
{
	alert('Item has been added to the Shopping Cart');
}
			
function PopUp()
{
	window.open('ForgotPassword.aspx','','width=400,height=150');
	return false;
}

function ShowMenu(MenuID)
{
	MenuID.style.display="block";
	return false;
}

function HideMenu(MenuID)
{
	MenuID.style.display='none';
	return false;		
}
