
var message="© 2006 - 2008.  All Rights Reserved.  von Ahn Design, LLC.  All plans, photos, drawings and images are protected under Copyright law.  Any unauthorized use is strictly prohibited.  Please contact us for more information.";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;


