function openWnd() {
var width=900;
var height=636;
var title="Map";
var left= (screen.width / 2) - (width / 2);
var top = (screen.height / 2) - (height / 2);

  wnd = window.open("", "imageWindow", 
    "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height);
  var doc = wnd.document;
  doc.open();
  doc.write('<html><head><title>' + title + '</title></head>' + 
            '<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">' +
            '<img src="shema.gif" width="' + width + '" height="' + height + 
            '" vspace="0" hspace="0" alt="' + title + '">' +
            '<br></body></html>'
            );
  doc.close();
  wnd.focus();
  return false;
}

