Código PHP:
setInterval("Resizer()",50);
function Resizer()
{
var obj = document.getElementById("body");
var obj2 = document.getElementById("rmBody");
if(obj.style.pixelHeight < obj2.style.pixelHeight)
obj.style.pixelHeight++;
else if(obj.style.pixelHeight > obj2.style.pixelHeight)
obj.style.pixelHeight--;
}
El obj es creado con appendChild... Afecta en algo? :S
Ya no se que hacer! Porque pruebo lo mismo en una página diferente y funciona -.-