function _gel(id)
{
	return document.getElementById(id);
}

function showInline (elName) {
	var theElement = document.getElementById(elName);
	if (theElement) {
		theElement.style.display = "inline";
	}
}
function hideInline (elName) {
	var theElement = document.getElementById(elName);
	if (theElement) {
		theElement.style.display = "none";
	}
}
