function Define(strWord)
{
  aryWord = strWord.split(" ");
  strTemp = "Thinking...";
  intCounter = 0;
  strWord = "";
  while (intCounter < aryWord.length)
  {
    strWord += aryWord[intCounter] + "_";
    intCounter++;
  }
  strWord = strWord.substring(0,eval(strWord.length-1));
  window.open ("defs/" + strWord + ".html","Glossary","width=400,height=300,screenX=100,screenY=100,alwaysRaised=yes,toolbar=no,scrollbars=yes")
}
