function ShowPhoto(Photo,WidthWin,HeightWin) { // Описываем параметры окна WiScr = screen.width; HeScr = screen.height; WidthWin22 = parseInt(WidthWin,10) + 16; param = "Width=" + WidthWin22 + "," ; HeightWin22 = parseInt(HeightWin,10) + 12; param = param + "Height=" + HeightWin22 + "," ; WiHe = HeScr / 2 - HeightWin / 2 ; param = param + "Top="+ WiHe +"px, " ; WiWi= WiScr / 2 - WidthWin / 2 ; param = param + "Left="+ WiWi +"px ," ; param = param + "Toolbar=0," ; param = param + "Status=0," ; param = param + "Menubar=0," ; param = param + "location=0," ; param = param + "Scrollbars=0," ; param = param + "Resizable=0," ; param = param + "Directories=0" ; // Открыть новое окно myWin=window.open("", "Photo", param); var HeU = (HeightWin - HeightWin % 2) / 2 + 100; var WiU = (WidthWin - WidthWin % 2) / 2 + 100; myWin.document.open(); myWin.document.write("Харківський ліцей № 36"); myWin.document.write(""); myWin.document.write(""); myWin.document.write(""); myWin.document.write(""); myWin.document.write(""); myWin.document.write(""); myWin.document.write(""); myWin.document.write(""); myWin.document.write(""); myWin.document.write(""); // закрыть документ - (но не окно!) myWin.document.close(); }