function toggle(divId) {
	divObj = document.getElementById(divId);
	
	if ((divObj.style.display == 'block'))
	{
		divObj.style.display = 'none';	
	}
	else
	{
		divObj.style.display = 'block';
	}
}