///////////////////////// 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 /////////////////////////



///////////////////////// POP UP CENTRATO /////////////////////////
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}
///////////////////////// POP UP CENTRATO /////////////////////////