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

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

function closePopupRedirect(page) {
	opener.document.location.href = page;
	close();
}

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

