PIERWSZY SKRYPT:
<SCRIPT language=JavaScript>
<!--
var message="POZDRAWIAM GORĄCO :))";
///////////////////////////////////
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>
<SCRIPT>
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</SCRIPT>
<!-- end description --><BR><!--
<!-- (C)2003 Gemius SA - GemiusAudience / Allegro / pozostale -->
<SCRIPT language=javascript type=text/javascript>
<!--
var pp_gemius_identifier = new String('ctVLAsM3POWuWMhcHEYKzpXj.IkRh1g6mJntEdyOlZn.m7');
//-->
</SCRIPT>
DRUGI SKRYPT:
<body bgcolor="#000000">
<body>
<SCRIPT>
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("POZDRAWIAM !!!");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
</SCRIPT>
</body>