function toggleDisplay(id, showType)
		{

			if(!showType) { showType = 'inline'; }
	
			var obj = document.getElementById(id);

			if((obj.style.display == 'none') || ((obj.style.display=='') && (obj.offsetWidth==0)))
			{
				obj.style.display = showType;
			}
			else
			{
				obj.style.display = 'none';
			}
		}
