<!--
//height, width = 2 Auto Resize the iFrame
function resizeIframe(i)
{
  //find the height of the internal page
if(i.height==2){
  var the_height=i.contentWindow.document.body.scrollHeight;

  //change the height of the iframe
  i.height=the_height;}

  //find the width of the internal page
if(i.width==2){
 var the_width=i.contentWindow.document.body.scrollWidth;
  //chang the width of the iframe
	i.width=the_width;}
}
//-->

