function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(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=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; } document.oncontextmenu=new Function("alert(message);return false") // --> // change highlight color ::selection { /* Change highlight background color */ background: #f7abcf; /* Change highlight text color */ color: #FFFFFF; } // body code i use for most sites body { background-image: url('https://i7.glitter-graphics.org/pub/676/676657yhxq5o5bjd.gif'); background-attachment: fixed; background-repeat: repeat; overflow: hidden; } // hidden scrollbar html { overflow: scroll; overflow-x: hidden; } ::-webkit-scrollbar { width: 0; /* remove scrollbar space */ background: transparent; /* to make scrollbar invisible */ } ::-webkit-scrollbar-thumb { background: transparent; } // links a {text-decoration: none; color: black; }