var indiceAva = 0;
var divHeight = 260;
function addAvaDiv(txt){
	mydiv = document.createElement('div');
	mydiv.id = 'div_ava_' + txt;
	mydiv.innerHTML = txt;
	d = document.getElementById('div_avances');
	d.appendChild(mydiv);
	if(divHeight<d.scrollHeight){
		alert("Se ha superado el espacio disponible ");
	}
	indiceAva++;	
}

function addAva(){
	addAvaDiv(document.getElementById('txt').value);
}

function addDiv(theDiv,txt){
	d = document.getElementById(theDiv);
	
		var mydiv = document.createElement('div');
		mydiv.id = 'div_ava_' + txt;
		mydiv.innerHTML = txt;		
		d.appendChild(mydiv);
		
		if((divHeight-20)<d.scrollHeight){
			d.removeChild(mydiv);
			return false;
		}		
		
		mytable = document.createElement('table');
		var _tr=mytable.insertRow(0)
		var _td = _tr.insertCell(0);
		_td.style.height="5px";
		
		d.appendChild(mytable);
		
		if((divHeight-20)<d.scrollHeight){
			d.removeChild(mydiv);
			return false;
		}
		else	
			return true;		
	
}

function addListadoDiv(theDiv,tipoNoticia,url){
	d = document.getElementById(theDiv);
	if(url==""){
		url = "http://www.eluniversal.com/beive_semana.shtml";
		if(tipoNoticia=="avances")
			url = url + "?type=AVA"
		else if (tipoNoticia=="titulares")
			url = url + "?type=ART"
	}
	var mydiv = document.createElement('div');	
	mydiv.id = theDiv + '_listado';
	mydiv.style.position="absolute";
	mydiv.style.top="180px";
	txt = '<img src="/images/beisbol07-08/mas_669.gif" border="0" width="9" height="9" hspace="4" ><a href="'+url+'" class="fs11v fc6659 bld dnone" id="az" style="padding-top: 5px">m&aacute;s '+tipoNoticia+'</a>'
	mydiv.innerHTML = txt;		
	d.appendChild(mydiv);
}