function hopIframe(){
	try{
		//parent.document.all("fstat").style.height=document.body.scrollHeight+10;
//		debugger
		if(document.body.scrollHeight!=0){
			var i;
			for(i=0;i<parent.document.getElementsByTagName("IFRAME").length;i++){
				var piid=parent.document.getElementsByTagName("IFRAME")[i].id
				
					parent.document.getElementsByTagName("IFRAME")[i].style.height=document.body.scrollHeight+10;
			}
		}
	}catch(e){
		
	}

}
window.onload=hopIframe;
window.setTimeout(hopIframe,100);
window.setTimeout(hopIframe,500);
window.setTimeout(hopIframe,2000);
