<!--Copyright (C) MJ Demarco 2000

//Prompts the user for their name and
//then adds it to the variable 'u_name'
//"error traps" the idiots that don't enter their name
//Also assigns the initial variable values for keeping track of the guesses

var u_name = window.prompt("Please enter your name...")
var goodguess=0
var badguess=0

if (u_name == null){
u_name = "idiot"
location.href="../tafe.htm";
}

if (u_name == ""){
location.href="noname.htm";
}

if (u_name == "undefined"){
location.href="noname.htm";
}
//-->
