<!--
var oldId = -1;
function OpenContent(Id)
{
	
	if(oldId!=-1)
	{
		window.document.getElementById(oldId).className = "hide";
		
	}
	window.document.getElementById(Id).className = "show";
	oldId= Id;
}
//-->


