function onLoad() {
  $("#main").css("height",$(document).height());
}

function resetIFrameFormHeightFromRegisterForm(){
	var h = document.body.offsetHeight + 5;
	if(h<78){
		h=78;
	}	
	parent.document.getElementById("iFrameForm").height = h;
}

function resetIFrameFormHeightFromUploadForm(){
	var h = document.body.offsetHeight + 5;
	if(h<128){
		h=128;
	}
	parent.document.getElementById("iFrameForm").height = h;
}

