function toggle(obj) {	
	with (document.getElementById(obj).style) { 
		display = (display == 'none') ? 'block' : 'none';
	}	
}