----- text of first location example : ------
<HTML>
<HEAD>
</HEAD>
<BODY>
<BR>
<P>
<center>
Look at the location on top!
<Script language="javascript">
       
    window.location="http://www.yahoo.com";
</Script>
</center>
</body>
</html>
------ text of second location example: -----
<HTML>
<HEAD>
</HEAD>
<BODY>
<BR>
<P>
<center>
Look at the location on top!
<Script language="javascript">
           
newpage=prompt("Enter a URL", "http://www.yahoo.com");
           
window.location=newpage;
</Script>
</center>
</body>
</html>