﻿animatedcollapse.addDiv('bloc_lg', 'fade=1,height=130px');
animatedcollapse.addDiv('bloc_lg_bottom', 'fade=1,height=103px');
animatedcollapse.init()


function choose_game(game_name)
	{
		if (game_name == 'Baccarat')
			window.location = 'bacara.html';
		else
		if (game_name == 'Blackjack')
			window.location = 'blackjack.html';
		else
		if (game_name == 'Craps')
			window.location = 'dados.html';
		else
		if (game_name == 'Roulette')
			window.location = 'ruleta.html';
		else
		if (game_name == 'Classiche Slot Machines')
			window.location = 'slots.html';
		else
		if (game_name == 'Video Slots')
			window.location = 'video-slots.html';
		else
		if (game_name == 'Keno')
			window.location = 'keno.html';
		else
		if (game_name == 'Jackpot Progressivi')
			window.location = 'botes-progresivos.html';
	}
	
function writediv(texte)
	{
		document.getElementById('test').innerHTML = texte;
	}

	function file(fichier)
	{
		if(window.XMLHttpRequest) // FIREFOX
			xhr_object = new XMLHttpRequest();
		else if(window.ActiveXObject) // IE
			xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
		else
			return(false);
		xhr_object.open("GET", fichier, false);
		xhr_object.send(null);
		if(xhr_object.readyState == 4)
			return(xhr_object.responseText);
		else
			return(false);
	}	
	
