// JavaScript Document
function apriFinestra(){
    hrefs = document.getElementsByTagName("a");
    for(var i=0;i<hrefs.length;i++){
       if (hrefs[i].getAttribute("rel") == "newWin"){
           hrefs[i].title = "Apre il link in una nuova finestra"
           hrefs[i].onclick = function(){
            var tempHref = this.href;
            this.href = "javascript:void(0)";
            window.open(tempHref, "_nomefinestra");
            }
        hrefs[i].onkeypress = function(){
            var tempHref = this.href;
            this.href = "javascript:void(0)";
            window.open(tempHref, "_nomefinestra");
            }
       }
    }
}

window.onload = apriFinestra;

