function escribirIframe(nombreIframe,nombreFormulario,nombreTextArea) {
        window.frames[nombreIframe].document.body.innerHTML=document.getElementById(nombreTextArea).value;
        if(document.all) {
                altura = window.frames[nombreIframe].document.body.offsetHeight +
window.frames[nombreIframe].document.body.scrollHeight -150;
                document.getElementById(nombreIframe).height = altura;
        } else {
                document.getElementById(nombreIframe).height =
document.getElementById(nombreIframe).contentWindow.document.body.scrollHeight;
        }
}

function haciendoTiempo(nombreIframe,nombreTextArea){
        setTimeout("escribirIframe('"+nombreIframe+"','','"+nombreTextArea+"')",50);
}

