// File:
//   greet.js
// Author:
//   Samuel A. Rebelsky
//   Copyright (c) 1997-98 Samuel A. Rebelsky.  All Rights Reserved.
// Description:
//   A simple JavaScript function that gets the reader's name by
//   putting up a dialog box and then prints the readers name.  

// Function:
//   greet
// Description:
//   Prompts for a name and prints the name
function greet() {
  var person;  // The name of the person
  person = prompt("What is your name?","");
  document.write("<strong>Welcome to my page, " + person + "</strong>");
} // greet()
