// JavaScript Document
var stardHeight=600;
window.onload=function(){
	var ziframe=parent.document.getElementById("contextId");
	var sheight=document.body.scrollHeight;
	var currHeight=(sheight<stardHeight)?stardHeight:sheight;
	ziframe.style.height=currHeight+"px";
}
