// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// This script and others available free at http://www.lissaexplains.com
var message="keep to urself."; // Message for the alert box
function click(e) {
if (document.all) {
if (event.button == 2) {
// Don't edit below!
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;
// -->
behind every cynic is a disillusioned idealist. maybe the ones who appear the most skeptical are the ones that have such grand ideals that they refuse to accept anything that falls short, and in the process of rejecting realistic options, appear to be the ones least willing to dream. maybe they are the ones who believe the most, the ones who invest so whole-heartedly in those ideals that everything else just seems inadequate, and rather than make-do with something lesser, choose to reject everything that might come along.