//IMAGES
function showPhoto(url, width, height, title) 
{
	xpos = (screen.width-width)/2;
	ypos = (screen.height-height)/2;
	win=open('','','width='+width+',height='+height+',scrollbars=no,menubar=no,status=no,location=no,fullscreen=no,directories=no,resizable=no,left='+xpos+',top='+ypos+', position:absolute');
	win.document.open();
	win.document.write("<html><head><title>"+title+"</title>");
	win.document.write("<meta http-equiv='Content-Type' content='text/html; charset=windows-1251'>");
	win.document.write("</head><body style=\"margin: 0;\">");
	win.document.write("<img src='"+url+"' width='"+width+"' height='"+height+"' border='0'>");
	win.document.write("</body></html>");
	win.document.close();
}
function caretOpen(id)
{
	width=545;
	height=450;
	xpos = (screen.width-width)/2;
	ypos = (screen.height-height)/2;
	win=open('cart.php??m=view','caret','width='+width+',height='+height+',scrollbars=no,menubar=no,status=0,location=no,fullscreen=no,directories=no,resizable=no,left='+xpos+',top='+ypos+', position:absolute');
}
