js2.html 271 Bytes
<script type="text/javascript"> 
	function bodyHeight(){
		var ifheight = $(document.body).height()+30;
		if(ifheight < 500){
			ifheight = 500;
		}
		$('#ifright',window.parent.document).css('height',ifheight);
	}
	$(function(){
		bodyHeight();
	});
</script>