// JavaScript Document<script language="JavaScript"> <!--
// No rightclick script v.4.0
// (c) 2006 j.finnerty


var message="Sorry, the right click function is disabled.\n\nAll Contents & Graphics on  this site are Copyright © StageArts.co.uk\nOur work is not Public Domain. Any  content should NOT be taken from\nthis site,without prior written consent from StageArts Theatre School."; // Message for the alert box

// 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;
// --> </script>