﻿//Start No Right Click
var message="Sorry, that function is disabled.\n© 2004 - 2007 Johnson & Johnson Pacific Pty Limited";

// Don't edit below!

function click(e) {
    if (document.all) {
        if (event.button == 2) {
            alert(message);
            return false;
        }
    }
   
    if (document.layers) {
        if (e.which == 3) {
            alert(message);
            return false;
        }
    }
}
   
if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN);
}

document.onmousedown=click;

// End No Right Click 

// Google Analytic
//document.write ('<!-- DO NOT COMMENT UNLESS IT GOES TO PRODUCTION (THIS IS FOR Banlice)' );
document.write ('<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></' + 'script>');
document.write ('<script type="text/javascript">');
document.write ('_uacct = "UA-2014614-5";');
document.write ('urchinTracker();');
document.write ('</' + 'script>');
//document.write ('-->');
