place the following code in the body of the web page you want to have
the
pop up window on.
this is the page for the popup to be placed on.
you will need another page for the code and that pages url is then
placed in the code positon that is listed in all capital letters.
this will give you a page button that will open a pop up window when
the viewer
wants to. it will let you put in the pop up any page on the web you
want to.
enjoy
___________________________________________________________
<!-- START OF SCRIPT -->
<script language="JavaScript"><!-- hide from old browsers
function PopIt(label, msg)
{
popup = window.open("REPLACE THESE WORDS WITH YOUR URL FOR THE PAGE
THAT IS TO BE THE POP UP
PAGE","","height=240,width=320,top=50,left=50,resizable
=yes,scrollbars =yes,toolbar =no,status = no,bReplace=false")
}
<!-- done hiding --></script>
<form>
<p align="center"><input type="button" name="B1"
value="REPLACE THESE WORDS WITH THE WORDS THAT GO ON THE BUTTON"
onclick= "PopIt()"></p>
</form>