function wp_showhide(theName) {
		
		
		/*
		// hide all
		theName2 = document.getElementById(theName);
		
		if(theName2.style.display == "none"){			
			// then display the one clicked
			theName2.style.display = "block";
		}
		else {
			// do nothing if clicked the one already showing
			theName2.style.display = "none";
		}*/
		
		
		
		theName_visible = document.getElementById(theName+"_visible");
		theName_hidden = document.getElementById(theName+"_hidden");
		
		if(theName_hidden.style.display == "none"){			
			// then display the one clicked
			theName_hidden.style.display = "block";
			theName_visible.style.display = "none";
		}
		else {
			// do nothing if clicked the one already showing
			theName_hidden.style.display = "none";
			theName_visible.style.display = "block";
		}
}
