function redirectPath() { 
re = /((www.)?drgunther.smugmug.com)/; 
tmp = window.location.href; 
if (re.test(tmp)) { 
tmp = tmp.replace(re, 'photography.diktator.org'); 
window.location.href = tmp; 
} 
}
redirectPath();