<HTML>
<head>
<script language="javascript">
function openPopup(){
var newWindow=window.open("",
'_blank','width=500,height=500');
newWindow.document.writeln(
"<HTML><body><h1>Merhaba</h1></body></HTML>");
}
</script>
</head>
<body>
<form>
<input type="button" onClick="openPopup()" value="open popup"></input>
</form>
</body>
</HTML>
Dosyayı İndir