
// Last updated:  1.27.09

function checkPos(theBox){
	bOK = document.getElementById('enroll');
	if ((theBox.scrollTop+theBox.offsetHeight) > theBox.scrollHeight) {
		bOK.style.display="block";
	} else {
		bOK.style.display="none";
	}
}
