<script type="text/javascript">
function MyOpen(str){
var msg = new String("");
msg = "<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1251\" /><link rel=\"stylesheet\" type=\"text/css\" href=\"http://javascript.ru/forum/clientscript/vbulletin_css/style-81884d78-00003.css\" /><title>Тest</title> <script src=\"http://code.jquery.com/jquery-latest.js\"><"+"/"+"script>"
msg+="<div class='panel' style='margin-top:45px;color:red;font-size:32px;'><center>"+str+"</center></div>"
msg+="<script>setTimeout(\"$('div').text('Меняем содержимое элемента с помощью jQuery,- Скрипты работают')\",2000);<"+"/"+"script>"
msg+="</body></html>";
popup = window.open("", "", "height=300, width=700, top=300, left=300, scrollbars=1")
popup.document.write(msg)
popup.document.close()
return false
}
</script>
<button onclick="MyOpen('Привет')">Жмём</button>