
function shopStart()
{
	document.write('<div id="shopDynamic">');
}

function shopEnd()
{
	document.write('</div>');
}

function shopToggle(category)
{
	var productList = document.getElementById('shopCategory'+category);
	
	if (productList.style.display == 'block')
	{
		productList.style.display = 'none';
	}
	else
	{	
		var productLists = document.getElementById('shopContent').getElementsByTagName('dl');
		for (var i=0; i<productLists.length; i++)
		{
			productLists[i].style.display = 'none';
		}
		productList.style.display = 'block';
	}
}

function shopBackToCheckout()
{
	document.write('<p><strong><a href="#" onclick="history.back(); return false">&lt; Back to Checkout</a></strong></p>');
}
