var message="Sorry, that function is disabled.\n\nCopyright © 1997-2007, Kyle Soderholm and the members of the USS Dragonstar RPG.\n\nThe site-specific information, custom graphics, and general design of this website are NOT Public Domain and MAY NOT be used without the express permission of myself, this site's creator.\n\nContact dragonstar-webmaster@ussdragonstar.com to request the right to utilize an image or information from this site, or to get further information.\n\nIn addition, Paramount - as always - holds all copyrights and other ownership rights to all Trek-related materials.  This site does not claim any ownership over such properties.\n\nKyle Soderholm,\nSite Owner"
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;