function openImageWindow (name, src, width, height){ str = '\n' + '\n' + '\n' + '\n' + ' ' + name + '\n' + '\n' + '\n' + // '
' + '
(нажмите для закрытия окна)
' + // '
' + '\n' + ''; newWindow = window.open("", "simpleWindow", "width=" + width + ",height=" + height + ",menubar=no,status=no,resizeable=no,toolbar=no,location=no"); window.newWindow.document.open("text/html"); window.newWindow.document.write(str); window.newWindow.document.close(); window.newWindow.focus(); return false; }