//
function ponTamPag( tamano )
{
	document.form1.tamanoPagina.value = tamano;
	document.form1.submit();
}

//
function invierteVisibilidad()
{
	//
	var obj = document.getElementById( 'cabecera' );
	var valor = obj.style.display;

	//
	if( valor == null || valor == '' )
		obj.style.display = 'none';
	else 
		obj.style.display = '';	
	
	//
	document.form1.estadoCabecera.value = obj.style.display;
}

