Week 2 - 121v4.htm

<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>