Week 2 - 123v2.htm

 

<SCRIPT>

var Name = prompt("What is your name", "Frank Peter");

alert("Welcome " + Name + "\nto my \nHome Page!");

document.write('<IMG SRC="images/welcome.gif"><P>');

// the gif names are all in lower so we need to ensure that the name is in lower case
Name = Name.
toLowerCase();

for (i = 0; i < Name.length; i++) {
     // get each character one at a time
     var Char = Name.
charAt(i);

     // if the character is a space call the Char space because that happens to be the gif's name
     if (Char == " ") Char = "space";
     // if the character is a period call the Char period because that happens to be the gif's name
     if (Char == ".") Char = "period";

     // write out each character one at a time
     document.write('<IMG SRC="images/' + Char + '.gif" WIDTH="40" HEIGHT="40">');
}

</SCRIPT>