// JavaScript Document

function right(evnt) {
    if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
        if (evnt.which >= 2) { 
            note(); return false; }
    } else
        if (event.button>=2)  note();
    }
    document.onmousedown=right;
    if (document.layers) window.captureEvents(Event.MOUSEDOWN);
        window.onmousedown=right;

function note() {
	alert('© Copyright 2000  Lifeguard Skills UK\n\nAll rights reserved unless explicitly granted.\n You may store on your personal computer or print copies of extracts from\n these pages for your personal and non-commercial use only but please \n quote LifeguardSkills UK as the source. You are not permitted to copy, \n download, store (in any medium), transmit, show or play in public, adapt or\n change in any way the content of these Web pages for any other purpose\n whatsoever without the prior written permission of LifeguardSkills UK');
}
