﻿
    
        var message = 'Website Images are property of The Brain Factory and are protected by Copyright and watermark. Unauthorized use is prohibited.' ;
        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;
        }
       

