function openGallery() {
	var xx = (screen.width - 800);
	var newWin = window.open("","gallery",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=640,height=480,left='+xx+',top=50,screenX='+xx+',screenY=50');
	newWin.focus();
}
/*function openCart(form) {
	var xx = (screen.width - 850);
	var newWin = window.open("","cart",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600,left='+xx+',top=50,screenX='+xx+',screenY=50');
	form.target="cart";
	newWin.focus();
	form.submit();
}*/
function openCart(form) {
	var xx = (screen.width - 850);
	var newWin = window.open("","cart",'width=760,height=560,left='+xx+',top=50,screenX='+xx+',screenY=50');
	form.target="cart";
	newWin.focus();
	form.submit();
}
