﻿


function AlterAnchors() {
    if (!document.getElementsByTagName) {
        return true;
    }
    var anchors = document.getElementsByTagName('a');
    for (var i = 0; i < anchors.length; i++) {
        anchors[i].onfocus = function() { this.blur(); };
    }
    return true;
}

function PageLoad() {
    document.documentElement.style.overflowY = 'scroll';
}
