|
<SCRIPT>
var theURL = prompt("Please
enter an HTTP Site", "http://espn.go.com");
if (theURL) {
if (theURL.indexOf("http://")
== -1) theURL = "http://" + theURL ;
document.write(theURL.link(theURL));
}
else document.write("You
Canceled the Input");
</SCRIPT> |