function f_frameStyleResize(targObj){

 var targWin = targObj.parent.document.all[targObj.name];

 if(targWin != null) {

  var HeightValue = targObj.document.body.scrollHeight;

  if(HeightValue < 400){HeightValue = 400;} 
 // alert(targObj.document.body.scrollHeight);
  targWin.style.pixelHeight = HeightValue;
  
 

 }

}

function f_iframeResize(){

 bLoadComplete = true; f_frameStyleResize(self);

}

var bLoadComplete = false;

window.onload = f_iframeResize;

