function showImage(href)  {
	wnd=window.open(href,'photo','width=10,height=10,tollbars=no');
	wnd.focus();
	return false;
}

function showCart()  {
	if(document.getElementById('cartCont').style.display == 'block')  {
		hideCart();
	}
	else  {
		document.getElementById('cartCont').style.left = ((document.body.clientWidth-800)/2 + 540) + "px";
		document.getElementById('cartCont').style.display = 'block';
	}
}

function hideCart()  {
	document.getElementById('cartCont').style.display = 'none';
}