/*
	Oculta las imágenes de atrás y adelante en los listados, según si hay o no más páginas hacia adelante/atrás
	Las imágenes DEBEN tener los ids 'imgAnterior' e 'imgSiguiente'
*/

function HideAntSig(HayAnterior, HaySiguiente)
{
	img = document.getElementById('imgAnterior');
	if (!img) return;
	
	if (!HayAnterior)
	{
		img.width=0;
		img.height=0;
	}
	
	img = document.getElementById('imgSiguiente');
	if (!img) return;
	
	if (!HaySiguiente)
	{
		img.width=0;
		img.height=0;
	}	
}

