Week 2 - 121v2.htm

<SCRIPT>

var theURL = prompt("Please enter an HTTP Site", "http://espn.go.com");

if (theURL) {
     if (theURL.
substring(0,7) != "http://") theURL = "http://" + theURL ;
     document.write( theURL.link(theURL));
}
else document.
write("You Canceled the Input");

</SCRIPT>