function hasPath(sPath)
{
re = new RegExp("\/" + sPath + "(\/|$)");
return re.test(window.location)
}



function redirectPath() { 
re = /(stevemo.smugmug.com)/; 
tmp = window.location.href; 
if (re.test(tmp)) { 
tmp = tmp.replace(re, 'www.stevemosesphotography.com'); 
window.location.href = tmp; 
} 
}
redirectPath();

rightClickWarning = "All photos are © Steve Moses - Steve Moses Photography. All rights reserved. Unauthorized use is prohibited."


