<!-- Hide from old browsers
// Created by Doug Popeney (easyjav@easyjavascipt.com)
// JavaScript Made Easy!! - http://www.easyjavascript.com

var message="Feel free to browse my web site at your leisure and absorb just one way of constructing a radio-controlled fireboat.  If you would like additional information about my construction process, please feel free to send me an email message.  You can do this by clicking on my name near the Copyright © notice on any page!"; // 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;

// -->

