SteveH
06-13-2008, 05:15 PM
Hello
I am using this to open a new window from a link on a Web page:
<Script Language="JavaScript">
function load() {
var load = window.open('LAN1.htm','','scrollbars=yes,menubar=no,height=600,width=800,resizable=yes,toolbar=no,l ocation=no,status=no');
}
</Script>
In the body I have:
<p><b>Watch the video <a href="javascript:load()">here</a></b></p>
Now I would like to open a window to LAN2 from another link on the same Web page.
In other words, I will have two links on the one Web page opening up windows to LAN1.htm and another link to LAN2.htm.
How would I do that?
Thanks.
Steve
I am using this to open a new window from a link on a Web page:
<Script Language="JavaScript">
function load() {
var load = window.open('LAN1.htm','','scrollbars=yes,menubar=no,height=600,width=800,resizable=yes,toolbar=no,l ocation=no,status=no');
}
</Script>
In the body I have:
<p><b>Watch the video <a href="javascript:load()">here</a></b></p>
Now I would like to open a window to LAN2 from another link on the same Web page.
In other words, I will have two links on the one Web page opening up windows to LAN1.htm and another link to LAN2.htm.
How would I do that?
Thanks.
Steve