function changeDisplay(object_item)
{
	var the_item = document.getElementById(object_item);
	
	if (document.getElementById) 
	{ // DOM3 = IE5, NS6 
		if (the_item.style.display == 'none') 
			the_item.style.display = 'block';
		else
			the_item.style.display = 'none';		
	} 
	else 
	{ 
		if (document.layers) 
		{ // Netscape 4 
			if (the_item.display == 'none') 
				the_item.display = 'block'; 
			else
				the_item.display = 'none'; 
		} 
		else 
		{ // IE 4 
			if (the_item.style.display == 'none') 
				the_item.style.display = 'block';
			else
				the_item.style.display = 'none';
		} 
	} 
} 
