// Clears input boxes of initial values when clicked into

function clearDefault(el) {
	if (el.defaultValue==el.value) el.value = ""
}
 
// Works the form-based URL jump menus 

function doJump(thisSelect) {
	if (thisSelect.selectedIndex > 0) {          
		document.location.href=thisSelect.options[thisSelect.selectedIndex].value;
       }
    }

function backStage( num ){
	var obj = document.getElementById("stage");
	obj.value = parseInt(obj.value)-(num+1);
	document.application.submit();
}
