// FLASH VERSION REQUIREMENTS:

    var requiredVersion = 6;   // Version the user needs to view site (max 9, min 2)
    var jsVersion = 1.0;       // Do not change or delete.

function startFACTS(strDestination) {
	strUrl = "/kshs-web/enroll/startfacts.php?loc=" + strDestination;
	remoteWin=window.open(strUrl,"remote",'toolbar=no,location=no,directories=no,status=yes,menubar=no,width=795,height=520,resizable=yes,scrollbars=yes,screenx=0,screeny=0,top=0,left=0');
}

/*
function startFACTS() {
    remoteWin=window.open("http://www.keystonehighschool.com/enroll/startfacts.php","remote",'toolbar=no,location=no,directories=no,status=yes,menubar=no,width=795,height=520,resizable=yes,scrollbars=yes,screenx=0,screeny=0,top=0,left=0')
}
*/
function loginPrep(){
	document.login.encoded_pw.value = base64encode( document.login.password.value );
	document.login.password.value = '';
}


function entsub(event,ourform) {
    if (window.event && window.event.keyCode == 13) {
        ourform.encoded_pw.value = base64encode(ourform.password.value)
        ourform.submit();
    } else {
        if (event && event.which == 13) {
            ourform.encoded_pw.value = base64encode(ourform.password.value)
            ourform.submit();
        }
        else return true;
    }
}