//<script>
function popup(id) {
var width=200;
var height=200;
var left=screen.width/2-width/2;
var top=screen.height/2-height/2;
var popup=window.open('', "Window", "directories=0,scrollbars=auto,toolbar=0,location=0,menubar=0,resizable=0,status=0,width="+width+",height="+height+",left="+left+",top="+top+"");
var html='';
html+='<html><head><title>Фото</title></head><body style="margin:0px;padding:0px;">';
html+='<img src="/catalog/img/'+id+'.jpg" width="200" height="200" title="Кликните, чтобы закрыть окно" onclick="window.close()" style="cursor:pointer" />';
html+='</body></html>';
popup.document.write(html);
popup.focus();
}
//</script>
