function toggle(divid){
	var thediv = document.getElementById(divid);
	
	if(thediv!=null){
		if(thediv.style.display == 'none')
			thediv.style.display = 'block';
		else
			thediv.style.display = 'none';
	}
	
}