<!-- Begin
function right(e) {
var msg = "* * Copyright (c) A Special Touch Portraits, PhotoPros of Oklahoma 2007 * * Your IP address has been logged.  Federal law makes it illegal to copy, scan, print, or download images, text, graphics or other artwork without written permission. Photographs and previews remain the exclusive property of this Studio/Photographer.";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
return true;
}
document.onmousedown = right;
// End -->


