|
|
|
JAVASCRIPT - Pop Up Boxes
|
1.) Add this code segment to your html code.
Remember to change the width and height of the window you'd like to pop
open.
<script LANGUAGE="JavaScript">
<!--
function ShowWindow(info) {
Stats=window.open(info,"Stats","width=550,height=200"); Stats.window.focus() }
// -->
</script>
2.) Add the following line of code to your html
wherever you'd like to make the pop-up box link.
<a href="Javascript:ShowWindow('Location
of either html or image, etc')">Pop The Window Open</A>
|
|
|
|
|
|