function relocate(url) {
    window.location.href = url;
}

function hideURLbar(){
    if(document.location.hash == '') {
        window.scrollTo(0,0);
    }
}
