//  *** for Online Info ***

function online_info(){

  var str_url = "http://online.babylon.com/combo/index.html?word="+document.onlineForm.word.value+"&lang="+document.onlineForm.lang[document.onlineForm.lang.selectedIndex].value+"&type=hp";

  window.open (str_url, "online", "scrollbars=no,status=no,width=256,height=334,top=215,left=33");
}


// *** for Glossary Search ***

function clearform(which){

  if (which.value=="search by word")
  which.value='';
}


function searchValid(){

  if (document.searchF.search.value == "" || document.searchF.search.value == "search by word"){
  alert ("Please enter a word in the search box");
 return false;
 }
  else {
 document.searchF.sort.value = "";
  return true;
} 
}
// * * *  This was here (before the return):  /\   ==>  //document.searchF.submit();  (including the two slashes)
function open_demo(FileName,w,h) {

  window.open('/demo.php?file_name=' + FileName, "Demo", "scrollbars=no,status=no,width="+w+",height="+h+",top=30,left=30");

}
// * * *  November 6, 2005  3:20