
document.onclick = function() {
	var obj = window.event.srcElement;
	
	if (obj.tagName == "A" && obj.href == "") {
		if (obj.className == "NoteParalleli" && obj.reference != null)
			alert("Hai cliccato note/paralleli: " + obj.reference);
		if (obj.tagName == "A" && obj.href == "") {
			if (obj.className != null) {
				switch (obj.className) {
					case "Bibbia":
					case "Concilio":
					case "Enciclica":
					case "Catechesi":
						// alert("Link: Type=" + obj.className + " - Reference=" + obj.innerText);
					break;
					case "Santi":
						window.location = "it/index.htm?rubriche/santi/biografie/" + obj.alt;
					break;
				}
			}
		}
	}

}

function openBible() {
	var left = ",left=3";
	var top = ",top=6";
	var width = ",width=" + (window.screen.width - 16);
	var height = ",height=" + (window.screen.height - 48);
	var features = "resizable=0,location=0,menubar=0,scrollbars=0,status=0,toolbar=0" + left + top + width + height;
	var popup = window.open("", "Bibbia", features);
	
	popup.location = "/biblioteca/bibbia.htm";
	
}

	
