function jumpMenu(selObj) {
	window.location = selObj.options[selObj.selectedIndex].value;
}

function doClear(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = "";
	}
}

function doShow(theText) {
	if (theText.value == "") {
		theText.value = theText.defaultValue;
	}
}