1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <script type='text/javascript'>
function popup(){
var mypopup=window.open('','Motif','toolbar=no,scrollbars=no,resizable=no,height=150,width=250,top=200,left=200');
mypopup.document.write("<html><head><title></title></head><body></body></html>")
//var pagehtml=mypopup.document.createElement('html');
//var headhtml=mypopup.document.createElement('head');
//var bodyhtml=mypopup.document.createElement('body');
//pagehtml.appendChild(headhtml);
//pagehtml.appendChild(bodyhtml);
//mypopup.document.appendChild(pagehtml)
var monimage=mypopup.document.createElement('img')
var pic=new Image();
pic.src="snow.gif";
monimage.src=pic.src;
mypopup.document.body.appendChild(monimage)
mypopup.document.close()
}
</script>
</head>
<body onload="popup();" >
</body>
</html> |