function popup(the_url)
{
	var new_window = 
		window.open(the_url, 'new_window','height=400,width=800,scrollbars,resizable,menubar,location,status,toolbar');
		new_window.focus();
		
	if (navigator.appName == "Netscape")
		{ 
		new_window.moveTo (0,0);
		}
}

function popupGlossary(the_url)
{
	var new_window = 
		window.open(the_url, 'new_window','height=420,width=420');
		new_window.focus();
		
	if (navigator.appName == "Netscape")
		{ 
		new_window.moveTo (0,0);
		}
}
