<script type="text/javascript" language="JavaScript">
<!--
 function GoToURL(j) {
  window.status=('Connecting....')
  
var URLis;
 URLis = document.URLframe.Dest.value
  
   if (URLis == "" || URLis.length <= 8)
           { 
     j.value = "Try Again"
      alert('\nOops!\n\nYou must enter a valid URL');
         window.status=('Missing data or Invalid. Try again?.')
           } 
    else
        {
 j.value = "Connecting to: http:\\" + URLis   
 var location=("http://" + URLis);
         this.location.href = location;
window.status=('Connecting to ' + URLis + '  Please wait........');
        }
        }
//-->
</script>
</head>
<body>
<center><h1>Go To URL Box</h1></center>
<div align="center"><form name="URLframe">
<table border="0" align="CENTER">
<tr><td valign="MIDDLE" align="CENTER"><br><font face="Arial, Helvetica" size="+1" color="#FF0000"><b>http://</b></font><input type="TEXT" name="Dest" size="55" maxlength="50"></td></tr>
<tr><td align="CENTER"><p><input type="Button" name="Go to" value="                       Go to..                                " onClick="GoToURL(this)"></p></td></tr></table></form></div>
<p>Type an address in the box above, click the button, and you will be taken there. The script works in both Netscape 4.0+ and IE 4.0+, but best in IE. Watch the 'Go to...' button and your status bar after pressing the button!</p>
