function toggleMenu(objID){ 
	
	if(!document.getElementById){
		return;
	}	
	
	var ob = document.getElementById(objID).style;
	
	ob.display = (ob.display == 'block') ? 'none': 'block';

}


//** Drop down menu 
function MM_jumpMenu(targ,selObj,restore){ //v3.0
 
	eval(targ+".location='directory.php?st="+selObj.options[selObj.selectedIndex].value+"'");

	if(restore){
		selObj.selectedIndex = 0;
	}
}


//** GoogleMap pop up
function GoogleMap(library){
	w = window.open('map.php?id='+library,'map','width=700,height=640');
}


function NewsLetter(url){
	n = window.open(''+ url +'' ,'newsletter','height=640,width=700,scrollbars=1,location=no,menubar=no,resizable=yes,status=no');
}