function commandTable(command)
{
   //upperCommand = command.toUpperCase();
    // See who has focus. If an input field, place text in input field, otherwise, ignore
    //alert("HasFocus.js")
	if (hasFocus != 0) {
	//alert("after HasFocus.js")
      if (hasFocus.value.length > 1) {
      //alert("if HasFocus.js")
		hasFocus.value = hasFocus.value + " " + command;
      } else {
	  //alert("else HasFocus.js")
        hasFocus.value = command;
      }
    }
}