function inizializza() {
		a = document.getElementsByTagName('A');
		for(i=0;a[i];i++) if(a[i].className.indexOf('blank') != -1) {
			a[i].title += " [il collegamento apre una nuova finestra]";
			a[i].onclick = function () {window.open(this.href, '_blank');return false;};
			a[i].onkeypress = function (e) {
				k = (e) ? e.keyCode : window.event.keyCode;
				if(k==13) {
					window.open(this.href, '_blank');
					return false;
				}
			}
		}
}

function mostra() {
  window.open('splashmostra.php', '_blank', 'menubar=0,statu=0,scrollbars=0,resizable=0,width=800,height=580');
  return false;
}
