
/*function showGlossary(term){
	var glossaryWindow = window.open('../glossary.php?term='+term,'glossary','width=500, height=300, toolbar=0, resizable=1, directories=0, menubar=0, status=1, location=0, scrollbars=1 ');
	glossaryWindow.focus();

}
*/
 function popWindow(wName){
features = 'width=450,height=300,toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,copyhistory=no,resizable=yes';
pop = window.open('',wName,features);
if(pop.focus){ pop.focus(); }
return true;
}
function showGlossary(term,lng){
	//alert(term);
	/*var glossaryWindow = window.open('glossary.php?term='+term+'&lng='+lng,'glossary','width=500, height=300, toolbar=0, resizable=1, directories=0, menubar=0, status=1, location=0, scrollbars=1 ');
	glossaryWindow.focus();*/
	document.glossary.term.value=term;
	
	popWindow(document.glossary.target);
	document.glossary.submit();
}
