function changeSt(layerRef)
{
	var strObj = document.getElementById(layerRef);
	if (strObj.style.display == "none")
	{
		strObj.style.display = "inline";
	}
	else
	{
		strObj.focus();
		strObj.style.display = "none";
	}
}