function inizializza() {
	a = document.getElementsByTagName('A');
	for(i=0;a[i];i++) if(a[i].className.indexOf('pop') != -1) {
		a[i].title += " [ingrandisce l'immagine in una nuova finestra]";
		a[i].onclick = function () {
			window.open(this.href, '_blank', 'width=300,height=300,menubar=yes, scrollbars=yes');
			return false;
			};
		a[i].onkeypress = function (e) {
			k = (e) ? e.keyCode : window.event.keyCode;
				if(k==13) {
				window.open(this.href, '_blank', 'width=300,height=300,menubar=yes');
				return false;
			}
		}
	}
}
