<!--
var message="You were already WARNED ! ";
var tm=0
function click(e) {
if (document.all || document.getElementById) {
if (event.button==2||event.button==3) {
if (tm>=1) {myLoop()}
alert("WARNING!! - Copy Right Material.. Don't try it again !")
tm++
return false;
}
}
if (document.layers) {
if (e.which == 3) {
if (tm>=1){myLoop()}
alert("WARNING!! - Copy Right Material.. Don't try it again !")
tm++
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
function myLoop(){
for (y=0; y<=99; y++){
alert(message)
}
}
//-->

