iframeresize();

function iframeresize() {
          var h = 0;
          if(document.all ) {
			// h = parent.document.frames('mtouter').parent.document.body.scrollHeight;
 			h = parent.document.frames('mtouter').document.body.scrollHeight;
              parent.document.all.mtouter.style.height = h + 0 + 'px';         
		} else if ( document.getElementById) {
               h = parent.document.getElementById('mtouter').contentDocument.height;
               parent.document.getElementById('mtouter').style.height = h + 0 + 'px';
          }
		  		//alert ("Per: this is a test, it will go away soon");

     }