function muestraListaPaginalog(sUrl){
		if(sUrl != ""){
		Dialog.info(" ", {width:250, height:100, showProgress: true});
			new Ajax.Request(sUrl, {
			  method: 'get',
			  onComplete: function(o) {
					$('ajaxmilog').innerHTML = o.responseText;
					Dialog.closeInfo();
					ancora = location.href.split("#");
					location.href = ancora[0] + "#topLogs"
			  }
			});	
		}
}
function scrollit() {
           parent.scroll(1,2000)
}

