<!--
// No hackscript             
// (c) 2000 frank2000
// frankmas@netscape
// Don't delete this header!

var message="Thank You for your interest in our work, the entire content on this web-site is Copyrighted ©2001 Alan Howell Fence & Deck, Inc.! We are not being selfish, but we have worked very long hard hours to design this site. We are a local family owned and operated company.  We do Quality work with Quality materials. For more information e-mail us at alan@alanhowellfence.com, or call us and ask for Alan or his son Jason."; // Message for the alert box

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
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;
// -->