<!-- CUSTOM LOCATION BAR --> <!-- This goes in the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2001, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- function gotoURL() { location.href=document.theURL.location.value; } //--> </script> <!-- This goes in the BODY of the html file --> <form name="theURL"> <input type="text" size="40" name="location" value="http://" /> <input type="button" value="Go!" onClick="gotoURL()" /> </form>