THE CARD SHOP


insert it in the <HEAD> section of your HTML pages). Unlike most code of this type
(most people seem to get it wrong),

<SCRIPT LANGUAGE="JavaScript"><!--
var message = 'Please respect our Copyright.' ;
function clickie() {
if (document.all) {
alert(message);
return false; } }
function clickns(e) {
if (document.layers||(document.getElementById&&!document.all)) {
if (e.which==2 || e.which==3) {
alert(message);
return false; } } }
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickns;
} else {
document.onmouseup=clickns;
document.oncontextmenu=clickie;
}
// --></SCRIPT>