// Loads a URL based on a user's dropdown list selection
function jumpMenu(targ,selObj,restore) {
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

// Opens a popup window with variables

function popwin(url, name, x, y) {
	if (x == null) x = 480;
	if (y == null) y = 500;
	var glossary = window.open(url, name, 'width=' + x + ',height=' + y + ',scrollbars=yes,resizable=yes,toolbar=no,status=yes,menubar=no');
}

function history(url, name, x, y) {
	if (x == null) x = 730;
	if (y == null) y = 450;
	var glossary = window.open(url, name, 'width=' + x + ',height=' + y + ',scrollbars=no,resizable=yes,toolbar=no,status=yes,menubar=no');
}