Site hosted by Angelfire.com: Build your free website today!


1. Copy the coding into the HEAD of your HTML document      
2. Change popup.location.href='.......' to your own URL            


<script language="JavaScript">
<!--
var gt = unescape('%3e');
var popup = null;
var over = "Launch Pop-up Navigator";
popup = window.open('', 'popupnav',

'width=150,height=150,resizable=1,scrollbars=auto');
if (popup != null) {
if (popup.opener == null) {
popup.opener = self;
}
popup.location.href = 'link_to_pop_up_window.htm';
}
// -->
</script>