To load a window, do something like this in the (X)HTML Code:
Code:
<input type="button" value="Enter Details" onclick="javascript:window.open('myform.html')" />
The line javascript
:window.open() will open a new window, at the press of the button. You pass in the name of the form file. There are extra parameters the open() method can take, which can be looked up on
W3Schools Online Web Tutorials.