
<!--


var message="© St. Peters Church";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
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;
// --> 

<!--
	

		function popupURL(theURL,width,height) { //v2.0
			window.open(theURL,"","width=" + width + ",height=" + height);
		}

		function popupImage(img,desc) {
			foto1= new Image();
			foto1.src=(img);
			Controlla(img,desc);
		}
		function Controlla(img,desc){
			if((foto1.width!=0)&&(foto1.height!=0)){
				viewFoto(img,desc);
			}
			else{
				funzione="Controlla('"+img+"','" + desc + "')";
				intervallo=setTimeout(funzione,20);
			}
		}
		function viewFoto(img,desc){
			largh=foto1.width+20;
			altez=foto1.height+20;
			stringa="width="+largh+",height="+altez;
			finestra=window.open(img,"",stringa);
			//finestra.document.title=desc
		}		

		//-->

