<html>
<head>
<script type="text/javascript">
function help()
{
var OutputWindow = window.open();
OutputWindow.document.open();
OutputWindow.document.write("this window");
OutputWindow.document.close();
}
</script>
</head>
<body>
<form name="ButtonForm">
<input type="button" value="Click for help" onClick="help();"/>
</form>
</body>
</html>
<head>
<script type="text/javascript">
function help()
{
var OutputWindow = window.open();
OutputWindow.document.open();
OutputWindow.document.write("this window");
OutputWindow.document.close();
}
</script>
</head>
<body>
<form name="ButtonForm">
<input type="button" value="Click for help" onClick="help();"/>
</form>
</body>
</html>

Post a Comment