function link_block(obj,immagine) {
	this.style.backgroundImage='url:('+immagine+')';
}

function OpenWin(pagina, nomepagina, larghezza, altezza, scroll) {
    LeftPosition = (screen.width) ? (screen.width-larghezza)/2 : 0;
    TopPosition = (screen.height) ? (screen.height-altezza)/2 : 0;
    settings = 'height=' + altezza + ',width=' + larghezza + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=' + scroll + ',resizable=yes'
    fine = window.open(pagina, nomepagina, settings)
    fine.focus()
}