redirectPath();

function redirectPath() {
re = /(introversion.smugmug.com)/;
tmp = window.location.href;
if (re.test(tmp)) {
tmp = tmp.replace(re, 'www.robchron.com');
window.location.href = tmp;
}
}