<!--
//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;
  //  var the_height=document.frames[i].document.body.scrollHeight ;
  //change the height of the iframe
  //alert(the_height);
  i.height=the_height;}

  //find the width of the internal page
if(i.width==2){
 var the_width=i.contentWindow.document.body.scrollWidth;
 //var the_width=document.frames["FileFrame2"].document.body.scrollWidth; 
  //chang the width of the iframe
	i.width=the_width;}
}

//-->
