// jumps to pages determined by the SELECT lists

function QuickLinkJump(ObjID){
if(!document.getElementById) return;

var theSelect = document.getElementById(ObjID);
var theOption = theSelect.options[theSelect.selectedIndex];
var theURL = theOption.value;

if (theURL != ""){
	window.location = theURL;
}
}
