﻿window.onload = goToHash;

// wait till everything on page loads, then redirect to anchor location
function goToHash() {
    if (document.location.hash) {
        document.location.href = document.location.href;
    }
}