/*
  <scripts.js>  Le funzioni JavaScript
*/


function Linka(blocco){
    var destinazione = blocco.getElementsByTagName('a');
    location.href=destinazione[0].href;
}
function RollOn(blocco){
    var titolo = blocco.getElementsByTagName('a');
    titolo[0].style.textDecoration="underline";
}
function RollOut(blocco){
    var titolo = blocco.getElementsByTagName('a');
    titolo[0].style.textDecoration="none";
}

function NewWindow(url,width,height)
 {
  xp = window.screen.width/2-(width/2);
  yp = window.screen.height/2-(height/2);
  window.open(url,'','resizable=0,scrollbars=1,left='+xp+',top='+yp+',width='+width+',height='+height);
}