function redirectUrlWithHash(urlString, hash) {
if (location.href == urlString) {
location.replace(urlString + '#' + hash);location.reload();
} else {
location.replace(urlString + '#' + hash);
}
}
