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;
}
}
}
}
window.onload = function() {inizializza();}

function popimg(){
    window.open('popupavatar.php','_blank','width=450, height=400, scrollbars=yes, resizable=yes')
}
 
function urlimg(valoreparametro) { 
document.getElementById("avatar").value = valoreparametro; 
} 
function txt_focus(){
	document.my_form.my_txt.focus();
}
