<!--
var exit = true;
var ScreenWidth = screen.width;
var ScreenHeight = screen.height;
var WindowWidth = 300;
var WindowHeight = 204;
var BigliettoWindow;
var Centro = (ScreenWidth - WindowWidth) / 2;

var Conversore = 1.5707;

function xit() {
	if (exit) {
		BigliettoWindow = window.open("biglietto.htm","BigliettoWindow","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);
		BigliettoWindow.window.moveTo((PosizioneX * Centro) / Conversore, PosizioneY);
	}
}
//-->