function autoFit(ID){
	if (!window.opera && !document.mimeType && document.all && document.getElementById){
		parent.document.getElementById(ID).style.height=this.document.body.offsetHeight+"px";
	}
	else if(document.getElementById) {
		parent.document.getElementById(ID).style.height=this.document.body.scrollHeight+"px";
	}
}
	
//////////////////////////////////////////////////////////////
// [ PageUp ]
//////////////////////////////////////////////////////////////

function pageup(e) {
UAGENT = navigator.userAgent.toUpperCase();
if (UAGENT.indexOf("MSIE") >=0) { posi = event.y; }
else { posi = e.pageY; }
moveObje(posi);
}

function moveObje(position) {
move = position / 10;
point = parseInt(position - move);
scrollTo(0,point);
if (point > 0) { setTimeout("moveObje(point)",10); }
}

//////////////////////////////////////////////////////////////