Open page with link or button

Open Window


Put this between your HEAD tags:
<SCRIPT Language="JavaScript">
<!-- Hide from old browsers
function openwindowlink(){
newwin = window.open("yourURLadress.htm","Winfolinx","height=320,width=320,scrollbars,resizable")
}
// end hiding --></SCRIPT>


Put this between your BODY-tags:
<a href="JavaScript: openwindowlink()">Open Window</a>

or

<form>
<input type="button" value="Open Window" onclick="JavaScript: openwindowlink()">
</form>


Free JavaScripts provided
by Winfolinx.com




Back