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