<!---

var sizes = new Array("0px", "1px", "2px", "3px", "3px");         
sizes.pos = 0;             

function rubberBand() {            
var el = document.all.elastic;            
if (null == el.direction)               
el.direction = 1;
             else if ((sizes.pos > sizes.length - 2) ||
                        (0 == sizes.pos))
               el.direction *= -1;
            el.style.letterSpacing = sizes[sizes.pos += el.direction];
         }

function finestra1(pic)
{
 win = window.open(pic, '_blank','width=420,height=340,resizable=1,scrollbars=0');
}

function finestra2(pic2){
win = window.open(pic2, '_blank','width=620,height=200,resizable=1,scrollbars=0');
}

function finestra3(pic3){
win = window.open(pic3, '_blank','width=320,height=300,resizable=1,scrollbars=0');
}
// --->

<!--
var exit = true;
var ScreenWidth = screen.width;
var ScreenHeight = screen.height;
var WindowWidth = 320;
var WindowHeight = 200;
var PopWindow;
var Centro = (ScreenWidth - WindowWidth) / 2;
var Conversore = 1.5707;
function vai_popup1() {
	if (exit) {
		PopWindow = window.open("tribute.htm","PopWindow","width=" + WindowWidth + ",height=" + WindowHeight + ",top=0,left=0,resizable=no,scrollbars=no,toolbar=no,location=no,status=no");
		setTimeout(Movimento(), 5000);	}}function Movimento() {
	for(var PosizioneX = 0; PosizioneX < Conversore; PosizioneX += 0.08){
		var PosizioneY = (ScreenHeight / 2) - (Math.cos(PosizioneX) * Centro+200);
		PopWindow.window.moveTo((PosizioneX * Centro) / Conversore, PosizioneY);
	}}//-->