function removeEmptyRight()
{
	var el = $$('div#text div.right')[0];
	if ( el == null || el == 'undefined' )
		return;

	if ( el.children.length == 0 )
		el.setAttribute( "id", "invisibleElement" );

	return true;

} // function

