var cursor = document.getElementById("credits");
for(var i = 0; i < cursor.childNodes.length; i++) {	// il primo a che incontro
    try {
        if(cursor.childNodes[i].tagName == "A") {
            cursor.childNodes[i].target = "_blank";
        }
    }
    catch(e) {}
}
