function show_item( id, display )
{
	if( display != 'block' && display != 'inline' ) 
		display = 'block';

	if( document.getElementById )
	{
		document.getElementById( id ).style.display = display;
	}
}

function hide_item( id )
{
	if( document.getElementById )
	{
		document.getElementById( id ).style.display = 'none';
	}
}

