///////////////////////// RIMUOVI FOCUS LINK /////////////////////////
function blurLink() {
if (this.blur) this.blur();
}

function removeFocusOnAllLinks(){
for(var i=0 ; i < document.links.length ; i++)
document.links[i].onfocus=blurLink;
}

window.onload=removeFocusOnAllLinks;
///////////////////////// RIMUOVI FOCUS LINK /////////////////////////



///////////////////////// POP UP /////////////////////////
function go(url, tool, menu, loc, scroll, resize, status, left, top, width, height) {
OpenWin = this.open(url, "CtrlWindow", "toolbar=" + tool + ",menubar=" + menu + ",location=" + loc + ",scrollbars=" + scroll + ",resizable=" + resize + ",status=" + status + ",left=" + left + ",top=" + top + ",width=" + width + ",height=" + height);
}
///////////////////////// POP UP /////////////////////////
