function IFrameResize() {
	if(window.ifrm){
		document.all['ifrm'].style.height = ifrm.document.body.scrollHeight + ifrm.document.body.offsetHeight - ifrm.document.body.clientHeight;
		document.all['ifrm'].style.width  = '100%';
	}
}

function IFrameLink(StrURL) {
  document.all['ifrm'].src = StrURL;
  IFrameResize();
}

window.onresize = IFrameResize;

