
	function display(botlist){
	botlistitem= botlist +'list';
	document.getElementById(botlist).style.display='block';
	document.getElementById(botlistitem).className='current';
	}
	
	function hide(botlist){
	botlistitem= botlist +'list';
	document.getElementById(botlist).style.display='none';
	document.getElementById(botlistitem).className='';
	}
	