//function to go to the url of the options's value
function jumpMenu(targ,selObj,restore){ 
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}



setupPDFJumpMenu = function (){
	//get the select menus 
	jumpmenu = document.getElementById('txtDate');

	//make it "jump" on release
	jumpmenu.onchange = function(){
		jumpMenu('parent',this,0);
		}
	}

