// Display welcoming text.
var guest = prompt("Welcome!  Please enter your name so I can personalize this Web page for you.", "Paul");
document.write("<h1>Welcome to my Home Page, " + guest + "</h1>\n");

