New Window
New Custom Window
New Windows
If you want a page to just open in a new window, like when you click
HERE
<A HREF="THE PAGE YOU WANT.html" target="_blank">
In the anchor tag, add the "target=_blank"
and this will make your new page open in a seperate window.
If you want the page to open in a small, window like when you click
HERE
You will have to use some javascript, as follows:
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function win2() {
window.open("THE PAGE YOU WANT.html","","height=400,width=850,
left=80,top=80,scrollbars=yes, resizable=yes");
}
</SCRIPT>
</HEAD>
Be sure to put the above code beofre the closing head tag!
Then in your anchor tag, code as follows:
<A HREF="javascript:win2()">
HOME