Closing a Window

You have reached the window where you can put up a quick menu, advertisement, etc. The button below will close the window, which is accomplished with the following HTML:

<FORM>
<INPUT type="button" value="Close Window" onClick="window.close()"> 
</FORM>


With a link.... Close Window

accomplished with the following HTML:

<a href="" onMousedown="window.close()">Close Window</a>

Another alternative is to use the following:

Close Window

This is accomplished with the following HTML:

<p align="center"><a href="javascript:window.close();">Close Window</a></p>


NOTE: This will not work in some browsers.