function ShowPhoto(photoname, w, h) {
	url = "http://www.merlion.ru/showphoto/index.php?img="+photoname;

	Win=window.open(url, 'viewPhoto',  'toolbar=0,scrollbars=0,location=0,directories=0,status=0,menubar=0,resizable=0,width='+w+',height='+h+',border=thin,top=50,left=50,help=0');
	Win.focus();
}
 
function ShowProduct(productid) {
	url = "http://www.merlion.ru/goods/catalog/product/" + productid + "/";

	Win=window.open(url, productid,  'toolbar=0,scrollbars=1,location=0,directories=0,status=0,menubar=0,resizable=1,width=770,height=500,border=thin,top=50,left=50,help=0');
	Win.focus();
}