
<!-- This script will disable right mouse clicking -->
<!-- begin hiding JavaScript
var message = "Sorry, no right-clicking. Contact Mississauga Pops Concert Band if you want an image."

function click(e) {
	if (document.all) {
		if (event.button == 2 || event.button == 3 ) {
			alert(message);
			return false;
	   }
   }
}
if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN);
}

document.onmousedown = click;

// end hiding javascript 
-->

