// JavaScript Document
var d = document

/* handleJump()
 * Evaluates the function passed to it and then resets and
 * blurs the jump menu that called it
 */
function handleJump(id) {
	val = d.getElementById(id).value
	eval(val)
	document.getElementById(id).selectedIndex = 0
	document.getElementById(id).blur()
	}
/* inURL()	change page in this window
 * exURL()	launch external site in new window
 *  mail()	act as a mailto: link
 */
function inURL(val) { 
	this.location = val
	}
