// No Clicking!
var noClicksMessage = "Downloading images from playpals.com.au is not permitted.";

function hookImage(img) {
	if (document.layers){
		document.captureEvents(Event.MOUSEDOWN);
		img.onmousedown=noClicks;
	}
	else if (document.all&&!document.getElementById){
		img.onmousedown=disRC;
	}
	img.oncontextmenu=new Function("alert(noClicksMessage);return false");
}

function noClicks(e) {
    if( !e ) {
        if( window.event ) {
            e = window.event;
        } else {
            return;
        }
    }

    if( typeof( e.which ) == 'number' ) {
        e = e.which;
    } else {
        if( typeof( e.button ) == 'number' ) {
             e = e.button;
         } else {
            return;
         }
    }

	if( navigator.appName == 'Netscape' && e == 3 ){
		alert(noClicksMessage);
		return false;
	}
	
	if (navigator.appName == 'Microsoft Internet Explorer' && e==2) {
		alert(noClicksMessage);
		return false;
	}
	else return true;	
}

