function wp_showhide(theName) {
		theName = document.getElementById(theName);
		if(theName.style.display == "none"){
			theName.style.display = "block";
		}
		else{
			theName.style.display = "none";
		}
}
