
function handleclick() {
	if (event.button==2)
		{
		showAboutBox();
		}
	}
function showAboutBox() {
	popup_msg="Valley View Cougars Junior Football \n\n";
	popup_msg+="All Rights Reserved";
	if (event.srcElement.id=="myFlashMovie") {
		popup_msg+="\n\n";
		}
		alert (popup_msg);
	}
document.onmousedown=handleclick;
