Если ставить такой код:
<script language="JavaScript">
<!-- hide
function openWin3() {
myWin= open("", "displayWindow",
"width=500,height=400,status=yes,toolbar=yes,menubar=yes");
// открыть объект document для последующей печати
myWin.document.open();
// генерировать новый документ
myWin.document.write("<html><head><title>On-the-fly");
myWin.document.write("</title></head><body>");
myWin.document.write("<center><font size=+3>");
myWin.document.write("This HTML-document has been created ");
myWin.document.write("with the help of JavaScript!");
myWin.document.write("</font></center>");
myWin.document.write("</body></html>");
// закрыть документ - (но не окно!)
myWin.document.close();
}
// -->
</script>
</head>
<body>
<form>
<input type=button value="On-the-fly" onClick="openWin3()">
</form>
То и он и все HTML в нем работает нормально.
Если же писать, который я пишу:
<script language="JavaScript">
function openWin3() {
myWin= open("", "displayWindow",
"width=500,height=400,status=yes,toolbar=yes,menubar=yes");
// открыть объект document для последующей печати
myWin.document.open();
// генерировать новый документ
myWin.document.write("<html><head><title>Добавить пост");
myWin.document.write("</title><meta charset='UTF-8'>");
myWin.document.write("<link rel='stylesheet' href='/Gelloiss.css'>");
myWin.document.write("link rel='styleshee' href='/css.css'>");
myWin.document.write("<script type='text/javascript' src='/admin/ckeditor/ckeditor.js'></script>");
myWin.document.write("</head><body>");
myWin.document.write("<form method='post' action='/ms/pr_fact.php'>");
myWin.document.write("<input name='idemail' type='text' size='30' placeholder='Ваш email'></br></br>");
myWin.document.write("<input name='idfactpo' type='text' size='30' placeholder='Название аниме, по какому пост.'></br></br>");
myWin.document.write("<input name='idnick' type='text' size='30' placeholder='Ваш ник. Будет указан в поле «Автор»'></br></br>");
myWin.document.write("<input name='idist' type='text' size='30' placeholder='Напишите, где взяли этот пост, или оставьте поле пустым.'></br></br>");
myWin.document.write("<b>Сам пост:</b></br>");
myWin.document.write("<textarea id='idtext' name='idtext' cols='40' rows='3'></textarea></br></br>");
myWin.document.write("<script>CKEDITOR.replace('idtext');</script>");
myWin.document.write("<input type='submit' name='send' value='Отправить''>");
myWin.document.write("</form>");
myWin.document.write("</body></html>");
// закрыть документ - (но не окно!)
myWin.document.close();
}
</script>
</head>
<body>
<form>
<input type=button value="On-the-fly" onClick="openWin3()">
</form>
То там где должна быть кнопка, открывающая окно, скрин, чет у него качество плохое, вот норм:
http://vk.cc/3E3Bx5
Подскажите, пожалуйста, почему, что делать?