//  *** 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 = "";
		//document.searchF.submit();
		return true;
	}
}

function open_demo(FileName) {
	window.open('/demo.php?file_name=' + FileName, "Demo", "scrollbars=no,status=no,width=600,height=400,top=30,left=30");
}