var update = function() {
if (window.location.hash && window.location.hash != "#") {
  var h = window.location.hash.substring(1);
  if (parseInt(iframe.style.height) != h) {   iframe.style.height = h + "px";    }
  }
};

var int = setInterval(update,10);
var iframe = document.createElement("IFRAME");
iframe.setAttribute("width", 600);
iframe.setAttribute("frameborder", 0);
iframe.src = "http://www.realself.com/widget/answersFull/79945?url=" + encodeURIComponent(window.location.href.replace(/#[^#]+$/, "")) + "&"; 
document.getElementById("rs_fwidg").appendChild(iframe);