Week 2 - 121v5.htm

<SCRIPT>

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

if (theURL) {
     // convert theURL to lower case "in order" to make a comparison
     theURL = theURL.
toLowerCase();
     if (theURL.
substring(0, 7) != "http://") theURL = "http://" + theURL ;
     document.write("<CENTER>Go to " + theURL.
link(theURL) + "</CENTER>");
}
else document.write("<CENTER><B>You Canceled the Input</B></CENTER>");

</SCRIPT>