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-15)<d.scrollHeight){
			d.removeChild(mydiv);
			return false;
		}
		else	
			return true;		
	
}

function addListadoDiv(theDiv){
	d = document.getElementById(theDiv);
	
	var mydiv = document.createElement('div');
	mydiv.id = theDiv + '_listado';
	txt = '<img src="/images/ca07/mas.gif" border="0" height="9" hspace="3" width="9"><a href="http://www.eluniversal.com/ca07_semana.shtml" class="notaroja" style="padding-top: 5px">ver listado de noticias</a>'
	mydiv.innerHTML = txt;		
	d.appendChild(mydiv);
}