<!-- HEAD START HERE --> <script language="JavaScript"> <!-- // function winop(){ windop=window.open("","mywin","width=300,height=120"); windop.document.open(); windop.document.write("<html><head><title>Дополнительное окно</title>"); windop.document.write("</head><body bgcolor=#f0f8f0>"); windop.document.write("<center><font face=Arial,Verdana size=3 color=#000080><b>Дополнительное окно</b></font></center>"); windop.document.write("<center><form><input type='button' value='Закрыть' onClick='window.close()'></form></center>") windop.document.write("</body></html>"); windop.document.close(); } // --> </script> <!-- HEAD END HERE --> </head> <body bgcolor="#EDEDED" text="#000000" link="#000000" topmargin="0" leftmargin="0"> <center> <!-- BODY START HERE --> <input type="button" value="Открыть" onclick="winop();"> <!-- BODY END HERE --> |