Instructions: Place this script where you want the output to appear on your webpage.
Replace the blue text with your messages. Purple text is optional, message can also be changed.
Tested On: IE 6, Mozilla 1.3, Opera 7
<SCRIPT LANGUAGE="JavaScript">
<!-- Hide this from older browsers
// This script was written by Protoplasm
// http://geocities.datacellar.net/protoplasm72
var value = window.prompt("What's your name?",
"Big John");
window.document.write ("Greetings, ");
window.document.write (value);
// end hide -->
</SCRIPT>