function hide(element)
{
	if (document.layers)
	{
		current = (document.layers[element].display == 'none') ? 'block' : 'none';
		document.layers[element].display = current;
	}
	else if (document.all)
	{
		current = (document.all[element].style.display == 'none') ? 'block' : 'none';
		document.all[element].style.display = current;
	}
	else if (document.getElementById)
	{
		vista = (document.getElementById(element).style.display == 'none') ? 'block' : 'none';
		document.getElementById(element).style.display = vista;
	}
}