
//Start No Right Click
var message="Sorry, that function is disabled.\n\u00a9 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
var newwindow;
function poptastic(url)
{
                newwindow=window.open(url,'name','height=220,width=766');
                if (window.focus) {newwindow.focus()}
}