function setIframeHeight () {
oContenedor = document.getElementById('contenedor');
oContenidoI = document.getElementById('contenido');
oContenidoN = window.frames['contenido'];
oInterna = oContenidoN.document.getElementById("interna");
oContenidoI
//asigno al contenedor y al iframe los valores correspondientes
oContenedor.style.height = (parseInt(oInterna.style.height)+1)+'px';
oContenidoI.style.height = (parseInt(oInterna.style.height)+1)+'px';

}
