var tmpId = 'tmpId';

function displayS(sId)
{
	if (tmpId == sId)
	{
		if (document.getElementById(sId).style.display == 'block')
		{
			document.getElementById(sId).style.display = 'none';
		}else
		{
			document.getElementById(sId).style.display = 'block';
		}
	}else
	{
		document.getElementById(tmpId).style.display = 'none';
		document.getElementById(sId).style.display = 'block';
	}
	tmpId = sId;
}
