var winpopup;

function winopen(path) {
label = "Кафе-бар 'Амадеус'. Интерьер";
var xtop = (screen.height-450)/2, xleft = (screen.width-638)/2;

if (!winpopup || winpopup.closed) {
  winpopup = window.open("","_blank","height=424,width=630,top="+xtop+",left="+xleft+",scrollbars=auto"); 
}
else {
  winpopup.focus();
}

msg = "<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN' 'http://www.w3.org/TR/html4/loose.dtd'><html><head><title>"+label+"</title><meta http-equiv='Content-Type' content='text/html; charset=windows-1251'><link rel='StyleSheet' type='text/css' href='amadeus_div.css'></head><body><p class='photo'><img src='images/photo/" + path + ".jpg' height='424' width='630' border='0' alt=''></p></body></html>";

winpopup.document.write(msg);
winpopup.document.close();
}
