function AutoIFrame(id){
	
if (this.document.body.offsetHeight && !document.all){
    parent.document.getElementById(id).style.height=this.document.body.offsetHeight+"px";
}
 
else if(this.document.body.scrollHeight) {
    parent.document.getElementById(id).style.height=this.document.body.scrollHeight+"px"

    }
}

