
<!--
function openBrWindow(theURL,winName,features) {
  newWindow=window.open(theURL,winName,features);
  newWindow.focus();
}
function dictionary(theword) { 
  theURL="http://www.norlink.net/testing/llcf/newproduction/definition.asp?aname="+theword
  newWindow=window.open(theURL,'DictName','scrollbars=yes,width=350,height=250');
  newWindow.focus();
}

function openAudioWindow(theURL,winExercise,features) {
  newWindow=window.open(theURL,winExercise,'scrollbars=yes,width=250,height=400,left=0,top=0');
  newWindow.focus();
}



