
function getElementById(id){
	if (document.getElementById)
	{
		return document.getElementById(id);
	}

	return null;
}

function overentrytitle(id){
	e = getElementById('entrytitle'+id)
	if (e != null)
	{
		e.style.display = 'inline';
	}
}

function outentrytitle(id){
	e = getElementById('entrytitle'+id)
	if (e != null)
	{
		e.style.display = 'none';
	}
}

