	function displayTab (tab){
	 // set all the tabs to not display
	 $A($$('div.showhidediv')).map(Element.extend).invoke('hide');
	 // set the selected tab to display
	 if(!$(tab)){alert(tab + " does not exist on the page!")}
	 $(tab).show();
	}