//SCRIPT THAT RESIZES IFRAME HEIGHT TO SIZE ON LOADING
//BY DOORMAN
<!--
function frameHeight(theid){
  //find the height of the internal page of the iframe
  var the_height = document.getElementById('frame' + theid).contentWindow.document.body.scrollHeight + 20;
  //change the height of the iframe
  document.getElementById('frame' + theid).height = the_height;
}
//-->