<!-- Begin
if (window != top) top.location.href = location.href;
// End -->


var clickmessage="We know you love our designs but we must ask that you not copy our photos.  We work very hard on our designs and images and want to keep them unique.  If you'd like to refer back to a specific design, add this web page to your 'Favorites' folder.  NOTE: We've added the latest Embedded Digital Watermarking Technology that allows us to track images that have been copied.  It is unlawful to copy or manipulate our text, designs or styles or call them your own. Our designs are copyrighted with the US Copright Office and we reseve the right to enforce our copyright." 

function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all)
document.onmousedown=disableclick
else if (document.layers)
associateimages()
