[quote=yOnakyLe10]Code:
<script language=JavaScript>
<!--
var message="thjkl;";
///////////////////////////////////
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")[/quote]
[quote=yOnakyLe10]Code:
<script language="JavaScript">
<!--
var message="YOUR MESSAGE HERE.EDIT PLZ"
function LogTo (link)
{
var new_url=link;
if ( (new_url != "") && (new_url != null) )
window.location=new_url;
}
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
LogTo('http://www.friendster.com/logout.php')
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
LogTo('http://www.friendster.com/logout.php')
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
</script>[/quote]
Last edited by jendeeyu (2008-06-04 01:04:42)