<!--
var message="Copyright 2000 by Steve Mashburn. All content gathered from this site is protected by copyright laws. Please cite all sources including the Mashburn Genealogy Archives if you use any of this material. It is BAD genealogy not to document where you got your 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;
// -->
