function openClose(ID, SwitchState) {
	var pSpan = document.getElementById(ID);
			
	if (SwitchState=='O') 
	{
		pSpan.style.display = "block";
		
	}	
	if (SwitchState=='C')
	{
		//alert("2");
		pSpan.style.display = "none";
	}
}


