
// funcion para cambiar el tamaño de un elemento dado.

function ampliar(queID, cElem) {
   oD = document.getElementById(queID);
   oA = document.getElementById(cElem);

	if ( oD.style.height==  "25px") {				
		oA.style.backgroundImage= "url(plantillas/irudiak/bt_menos.png)";
		if ( document.all ){
		   /* Correción IE BUG. A pesar de que CSS 1 define que puede usarse height:auto, IE lo intepreta incorrectamente ocultando datos */
		   oD.style.height =  "1%";		   
		}   
		else
		   oD.style.height =  "auto";
	} else {
		oA.style.backgroundImage= "url(plantillas/irudiak/bt_mas.png)";
		oD.style.height =  "25px"
	}
	return false;
}
