function showGloss(term) {
	pad = window.open( 'glossary/' + term + '.html', 'glos', 'status,scrollbars, top=80,left=80,screenX=80,screenY=80,width=500,height=240');
	if (window.focus) {pad.focus();}
}

function showFullScreen(url) {
	if (window.screen) {		
		w = screen.availWidth; h = screen.availHeight - 45;
	} else {
		w = 640; h = 480;
	}
	bigshow = window.open( url, 'ext', 'status,resizable,top=0,left=0,screenX=0, screenY=0,width=' + w + ',height=' + h);
	if (window.focus) {bigshow.focus();}
}

function showWin(url, w, h) {
	theshow = window.open( url, 'ext', 'status,resizable,scrollbars,toolbar,menubar,width=' + w + ',height=' + h);
	if (window.focus) {theshow.focus()}
}