function showDiv(divId)  
{ 
     thisDiv = document.getElementById(divId); 
     if (thisDiv.style.display = "none")  
	{ 
       	   thisDiv.style.display = 'block'; 
     	} 
     else  
	{ 
           thisDiv.style.display = 'none'; 
     	} 
} 