function resetIframeHeight(){ 
try{ 
var str=window.clipboardData.getData('text'); 
var obj=document.getElementById('main'); 
if(str.match(/^frameHeight=\d+$/)){ 
obj.style.height=parseInt(str.match(/\d+/))+'px'; 
window.clipboardData.setData('text','null'); 
} 
}catch(e){} 
setTimeout(resetIframeHeight,100); 
} 
