<!--

/* Este script fue escrito por luis_adolfo, webmaster de Zona Ocio (www.zona-ocio.org) */
/* y no esta liberado, asi que se prohibe estrictamente su uso, en algún otro sitio.   */
/* Respeta mi trabajo, si quieres usarlo, pideme permiso. A mi me costo trabaja hacer  */
/* este script, y desde luego aprender algo de javascript para poder hacerlo.	       */

function todos(id)
{
	var opcion = document.getElementById(id);

	var texto = document.getElementById('ms_'+id);
	texto.removeChild(texto.firstChild);

	if (opcion.style.display == 'block')
	{
		opcion.style.display = 'none';

		texto.appendChild(document.createTextNode('Ver todos'));
	}
	else
	{
		opcion.style.display = 'block';

		texto.appendChild(document.createTextNode('Ocultar'));
	}
}

// -->