/*miscelaneous javascript functions used by the library website*/

	function smallwin(URLarg)
		{var smallWindow=window.open(URLarg,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=565,height=400");}
		
		function popup(){
			helpwindow = window.open('http://'+window.location.hostname+'/proxy.php','helper','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=300,height=300');
		}
		
		function getSelectValue(selectobject) {
		var param = selectobject.options[selectobject.selectedIndex].value;
		var param2=param.replace(/ /g, '_');
		var first="eindex/DBSearchResults_nets.asp?subhead=";
		location.href=first.concat(param2);
	}
	
	function  jumpBox(dbselect){
		var choice=dbselect.options[dbselect.selectedIndex].value;
		location.href =choice;
	}
