var winpopup;

function winopen(path) {
label = "Наш автосервис. Схема проезда";
var xtop = (screen.height-358)/2, xleft = (screen.width-538)/2;

if (!winpopup || winpopup.closed) {
  winpopup = window.open("","_blank","height=358,width=538,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='/autotoria.css'></head><body><p class='photo'><img src='/images/map/" + path + ".jpg' height='358' width='538' border='0' alt=''></p></body></html>";

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