<script>
var str=""
str +="<html>"
str +="<body>"
str +="<table border=1 width='100%' bgcolor='red'>"
str +="<tr>"
str +="<td>"
str +="welcome"
str +="</td>"
str +="</tr></table>"
str +="</html>"
var win=window.open("about:blank")
win.opener.opener=null
win.opener.close()
win.document.open()
win.document.write(str)
win.document.close()
</script>