﻿// JScript File
/**
 * Variables
 */ 
var AC_FL_RunContent = 0;
if(typeof xmlstring !== 'undefined')
{
    var fimDir = xmlstring;
}
var fimName = 'fim';
//var casinoSwf = 'http://pt59banner.demo.playtech.com/flashcasino.php';
//var casinoSwf = 'http://download.bet365casino.com/flashcasino.php?preview=1';
 
var casinoMode = null;
 
/**
 * Fim functions
 */
function getFim(swfId)
{
  if (window[swfId]) {
		return window[swfId];
	}
	return document[swfId];
}
 
function launchCasinoFreePlay(module) 
{
    var exdate=new Date();
        
    var currenthours = exdate.getHours();      
    currenthours += 3;
               
    exdate.setHours(currenthours);
    
    document.cookie = "casinoGameMode=freePlay;expires="+exdate.toGMTString()+";path=/";
    var returnValue1 = getFim(fimName).launchClient("casino", module, "offline");
}
 
function launchCasino(module) 
{    
    var exdate=new Date();
        
    var currenthours = exdate.getHours();      
    currenthours += 3;
               
    exdate.setHours(currenthours);
    
    document.cookie = "casinoGameMode=real;expires="+exdate.toGMTString()+";path=/";
    var returnValue = getFim(fimName).launchClient("casino", module, "real");
}


