<!-- Copyright (c) 1999/2001 by Flatiron Graphics & Design Dudley, NC -->
<!-- All rights reserved -->
<!-- Created by Flatiron Graphics & Design -->
<!-- If you use this script then -->
<!-- you must leave the above mentioned copyright in it -->

<!-- begin code --!>
var time=new Date();
var year=time.getYear();
function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) 
{alert("Total contents of this site Copyright © 1998/" + year + " by Flatiron Graphics & Design!");
return false;
}
return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

<!-- end code -->
