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