// JavaScript Document
	function MembersGlobal() {
		this.siteGroupURL = 'http://members.bingoentertainment.net/Local/BEN/BEN/';
		this.siteURL = 'http://members.bingoentertainment.net';
		this.idCustomer = 62;
	}

	var global = new MembersGlobal();

	function GetJackpotMovieName(idJp, idPackage) {
		return "jackpot_" + idJp + "_" + idPackage;
	}

	function LoadJackpotMovie(idJp, idPackage, color, currency) {
		id = GetJackpotMovieName(idJp, idPackage);

		var url = global.siteGroupURL + 'WebPageJP?' +
	    'color=' + color +
	    '&currency=' + currency +
	    '&idCustomer=' + global.idCustomer +
	    '&strNameSpace=' + 'http://tempuri.org/' +
	    '&idPackage=' + idPackage +
	    '&idJackpot=' + idJp +
	    '&urlPath=' + global.siteURL + '/Services/Misc.asmx';

		AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
		'width', '100',
		'height', '18',
		'src', url,
		'quality', 'high',
		'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'showall',
		'wmode', 'Transparent',
		'devicefont', 'false',
		'id', id,
		'bgcolor', '#ffffff',
		'name', id,
		'menu', 'true',
		'allowFullScreen', 'false',
		'allowScriptAccess', 'always',
		'movie', url,
		'salign', '');

		// Save object
		window[id] = document.getElementById(id);
	}