//Register passby vars
var RegTournamentId = 0;
var RegRound = 0;
var RegBracket = 0;
var RegIsRebuy = false;
var RegRebuyAmount = "$0";
var RegIsFromLobby = false;

// provides access to querystring collection
function Widgets_QueryString(){var aQS;var sQS = window.location.search.toString();sQS = sQS.substring(1, sQS.length);if (sQS != null && sQS != ""){aQS = sQS.split("&");for (var i = 0; i < aQS.length; i++){aQS[i] = aQS[i].split("=");}}else{aQS = new Array(0);}this.Get = function (sKey){sKey = escape(sKey);for (var i = 0; i < aQS.length; i++){if (aQS[i][0] == sKey){return unescape(aQS[i][1]);}}return null;};this.Count = aQS.length;};
function Widgets_Request(){this.QueryString = new Widgets_QueryString;};
var Request = new Widgets_Request();

// deprecated syntax support
function CasinoGameOpenDemo() { CasinoGameOpen(arguments[0], -1); }
function CasinoGameOpenLogin() { CasinoGameOpen(arguments[0], 1); }
function OnGameClicked() { CasinoGameOpen(arguments[0]); }
function OnPlayClicked() { CasinoGameOpen(arguments[0],arguments[1]); }

// game launch
function CasinoGameOpen(nCasinoGameId, nAccountId, sGameCode)
{
   var LaunchForm = document.forms["LaunchForm"];
   var LobbyForm = document.forms["LobbyForm"];
   if (LaunchForm == null){alert("Launch Form not found"); return;}
   if (LobbyForm == null){alert("Lobby Form not found"); return;}
   
   if (nAccountId != null) LaunchForm["AccountId"].value = nAccountId;

   // verify login
   var token = LaunchForm["Token"].value;
   var nAccountId = LaunchForm["AccountId"].value;
   if (nAccountId == "1" && token == "") return;
   
   LaunchForm["CasinoGameId"].value = nCasinoGameId;
   if (LaunchForm["GameCode"] != null) LaunchForm["GameCode"].value = sGameCode;
   
   var wWindow = popupGame();
   if (wWindow == null)
   {
      alert("Unable to open game window. You may have a pop-up blocker enabled.");
      return;
   }
   try 
   {
      wWindow.moveTo(0,0);
   } 
   catch(e){}
   try 
   {
      wWindow.resizeTo(screen.width,screen.height);
      wWindow.focus();
   } 
   catch(e){}
   LaunchForm.submit();
}

// lobby functions
function OnLanguageClicked(Language)
{
   var LobbyForm = document.forms["LobbyForm"];
	LobbyForm["lang"].value = Language;
	LobbyForm.submit();
}

function OnCategoryClicked(CategoryId, IsContest, TabCode)
{
   var LobbyForm = document.forms["LobbyForm"];
   LobbyForm["catid"].value = CategoryId;
   LobbyForm["tabcode"].value = TabCode;
   LobbyForm.submit();
}

function RefreshLobby()
{
   document.forms["LobbyForm"].submit();
}

function OnLobbyLoad()
{
   if (document.location.search != null && document.location.search.length > 2)
   {
      if (Request.QueryString.Get("CasinoGameId") != null) 
      CasinoGameOpen(Request.QueryString.Get("CasinoGameId"));
      if (Request.QueryString.Get("GameCode") != null)
      CasinoGameOpen(0,null,Request.QueryString.Get("GameCode"));
      RefreshLobby();
   }
}

// contest functions
function OnRegisterClicked(TournamentId, Round, Bracket, Fee)
{
	if (confirm("This will debit " + Fee + " from your account"))
	{
	   var LobbyForm = document.forms["LobbyForm"];
		LobbyForm["tournamentid"].value = TournamentId;
		LobbyForm["round"].value = Round;
		LobbyForm["bracket"].value = Bracket;
		LobbyForm["action"].value = "REGISTER";
		LobbyForm["target"].value = "REGISTER_WND";
		LobbyForm.submit();
	}
	
}

function OnScoreboardClicked(TournamentId, Round, Bracket)
{   
   var LobbyForm = document.forms["LobbyForm"];
	LobbyForm["tournamentid"].value = TournamentId;
	LobbyForm["round"].value = Round;
	LobbyForm["bracket"].value = Bracket;
	LobbyForm["action"].value = "SCOREBOARD";
	LobbyForm.target = "SCOREBOARD_WND";
	LobbyForm.submit();
}

function OnBackClicked()
{
   var LobbyForm = document.forms["LobbyForm"];
	LobbyForm["round"].value = "";
	LobbyForm["bracket"].value = "";
   LobbyForm["action"].value = "";
	LobbyForm.submit();
}

function Logout()
{
   var LobbyForm = document.forms["LobbyForm"];
   LobbyForm["token"].value = "";
	LobbyForm["action"].value = "LOGOUT";
	LobbyForm.submit();
}

function popupNews(url, width, height)
{
   var settings="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height;
   winpops=window.open(url,"",settings);
}

function popupGame()
{
   var settings="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+screen.width+",height="+screen.height;
   return window.open("","casinogamingflashwindow",settings);
}

function doRegister(TournamentId, Round, Bracket, Fee, isFromLobby)
{
   if(confirm("This will debit " + Fee + " from your account"))
   {
      RegTournamentId = TournamentId;
      RegRound = Round;
      RegBracket = Bracket;
      RegIsRebuy = false;
      RegRebuyAmount = Fee;
      RegIsFromLobby = isFromLobby;
      
      jQuery.ajax({
	      type: "GET",
	      url: "/images/newsite1024/feed/new-casino-lobby-feed.aspx",
	      data: "action=REGISTER&tournamentid=" + TournamentId + "&round=" + Round + "&bracket=" + Bracket,
	      cache: false,
         success: registerResponse
	   });
	}
	
	return false;
}

function doRebuy(TournamentId, Round, Bracket, Fee)
{
   if(confirm("This will debit " + Fee + " from your account"))
   {
      RegTournamentId = TournamentId;
      RegRound = Round;
      RegBracket = Bracket;
      RegIsRebuy = true;
      RegRebuyAmount = Fee;
      
      jQuery.ajax({
	      type: "GET",
	      url: "/images/newsite1024/feed/new-casino-lobby-feed.aspx",
	      data: "action=REGISTER&tournamentid=" + TournamentId + "&round=" + Round + "&bracket=" + Bracket,
	      cache: false,
         success: registerResponse
	   });
	}
	
	return false;
}

function registerResponse(resp)  {

   var nofunds = resp.match(/You have insufficient funds to enter the contest./ig);
   var periodclosed = resp.match(/Registration period has closed./ig);
   
   if(nofunds && nofunds[0])
   {
      alert("You have insufficient funds to enter the contest.");
   }
   else
   {
      if(periodclosed && periodclosed[0])
      {
         alert("Registration period has closed.");
      }
      else
      {
         if(RegIsRebuy)
         {
            alert("You've successfully rebought for " + RegRebuyAmount  + ".");
         }
         else
         {
            //By default trigger the default option...
            //var LobbyForm = document.forms["LobbyForm"];
   		   //LobbyForm["tournamentid"].value = RegTournamentId;
   		   //LobbyForm["round"].value = RegRound;
   		   //LobbyForm["bracket"].value = RegBracket;
   		   //LobbyForm["action"].value = "REGISTER";
   		   //LobbyForm["target"].value = "REGISTER_WND";
   		   //LobbyForm.submit();
   		   
   		   //Default is supposed to be a register call...
   		   //We should either reload the page or reload the tab 
   		   //depending on where are we at !!!
   		   
   		   //Lets just reload the page for now....
   		   if(RegIsFromLobby)
   		      loadTab(4,3,"LOBBYCAT_CONTEST");
   		   else
   		      self.location = self.location;
   		}
      }
   }
}

function showScoreboard(TournamentId, Round, Bracket)
{
   var width = jQuery('.jScrollPaneContainer').width();
   var height = jQuery('.jScrollPaneContainer').height();
   
   jQuery('.jScrollPaneContainer').prepend(
      // '<div id="scoreboardDIV1" style="width: '+width+'px; height: '+height+'px; background-color: white; filter:alpha(opacity=25);opacity:0.25; position: absolute; top: 0px; left: 0px; z-index: 50000;"></div>' +
      '<div id="scoreboardDIV2" style="width: '+(width-2)+'px; height: '+(height-2)+'px; filter:alpha(opacity=100);opacity:1.0; border: 1px solid #ced6e3; background-color: white; position: absolute; top: 0px; left: 0px; z-index: 50001; padding: 0px;">' +
         '<p style="margin: 10px 10px;">Loading scoreboard...</p>' +
      '</div>');
      
   jQuery.ajax({
	   type: "GET",
	   url: "/images/newsite1024/feed/new-casino-lobby-feed.aspx",
	   data: "action=SCOREBOARD&tournamentid=" + TournamentId + "&round=" + Round + "&bracket=" + Bracket,
      cache: false,
      success: scoreboardResponse
	 });
	 
	 return false;
}

function scoreboardResponse(resp)  { 
   var title = jQuery('table:eq(0)',resp).html();
   var table = jQuery('table:eq(1)',resp).html();
    
    jQuery("#scoreboardDIV2").html('<div style="line-height: 25px; text-align: right; padding-right: 10px;"><a href="#" onclick="return removeScoreboard();">Close</a></div><div style="padding-left: 5px; padding-right: 5px;"><table class="header-table">' + title + '</table><table>' + table + '</table></div>');
}

function removeScoreboard() {
   jQuery("#scoreboardDIV1,#scoreboardDIV2").remove();
   return false;
}

function processHeadFeed(msg,success) {
   
   if(msg.indexOf("<!--NOTLOGGEDIN-->") == 0)
   {
	  //Also change our header...
	  jQuery("#casino-content .casino-lobby-header-feed1,#casino-content .casino-lobby-header-feed2").hide();
	  jQuery("#casino-content .casino-lobby-header-banner").css("background-image","url(/images/newsite1024/images/casino/lobby-header-background-vi.jpg)");
   }
   
   jQuery("table",msg).each(function(){

      if(this.className == "contest")
      {
         jQuery("tbody tr:eq(0),tbody tr:eq(1)",this).each(function(){

            if(jQuery(this).children().length > 2 && jQuery("td:eq(2)",this).html() != "Finished")
            {
               var fst = jQuery("td:eq(1)",this).html();
               fst = fst.split(/<br>/i); 
               var dt = fst[0]
               var desc = fst[1];
               var stat = jQuery("td:eq(2)",this).html();
               var time = jQuery("td:eq(3)",this).html();
                           
               if(jQuery('.casino-lobby-header-feed1 .title').html() == "" && 
                  jQuery('.casino-lobby-header-feed1 .description').html() == "" && 
                  jQuery('.casino-lobby-header-feed1 .extra').html() == "")
               {
                  //Update 1 DIV
                  jQuery('.casino-lobby-header-feed1 .title').html(stat);
                  jQuery('.casino-lobby-header-feed1 .description').html(dt);
                  jQuery('.casino-lobby-header-feed1 .extra').html(time);
                  
                  jQuery('.casino-lobby-header-feed1').css("cursor","pointer");
                  jQuery('.casino-lobby-header-feed1').click(function(){ self.location = '/casino/casino-tournaments.aspx'; });                                    
               }
            }
            else
            {
               var fst = jQuery("td:eq(0)",this).html();
               fst = fst.split(/<br>/i);
               var game = fst[0];
               var desc = fst[1];
                        
               if(jQuery('.casino-lobby-header-feed2 .title').html() == "" && 
                  jQuery('.casino-lobby-header-feed2 .description').html() == "" && 
                  jQuery('.casino-lobby-header-feed2 .extra').html() == "")
               {
                  //Update 2 DIV
                  jQuery('.casino-lobby-header-feed2 .title').html(game);
                  jQuery('.casino-lobby-header-feed2 .description').html(desc);
                  jQuery('.casino-lobby-header-feed2 .extra').html("");
                  
                  jQuery('.casino-lobby-header-feed2').css("cursor","pointer");
                  jQuery('.casino-lobby-header-feed2').click(function(){ self.location = '/casino/casino-tournaments.aspx'; });                                    
               }
            }

         });                
      }

   });

}

/**
 The MIT License

 Copyright (c) 2010 Daniel Park (http://metaweb.com, http://postmessage.freebaseapps.com)

 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:

 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.

 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 THE SOFTWARE.
 **/
var NO_JQUERY = {};
(function(window, $, undefined) {

     if (!("console" in window)) {
         var c = window.console = {};
         c.log = c.warn = c.error = c.debug = function(){};
     }

     if ($ === NO_JQUERY) {
         // jQuery is optional
         $ = {
             fn: {},
             extend: function() {
                 var a = arguments[0];
                 for (var i=1,len=arguments.length; i<len; i++) {
                     var b = arguments[i];
                     for (var prop in b) {
                         a[prop] = b[prop];
                     }
                 }
                 return a;
             }
         };
     }

     $.fn.pm = function() {
         console.log("usage: \nto send:    $.pm(options)\nto receive: $.pm.bind(type, fn, [origin])");
         return this;
     };

     // send postmessage
     $.pm = window.pm = function(options) {
         pm.send(options);
     };

     // bind postmessage handler
     $.pm.bind = window.pm.bind = function(type, fn, origin, hash) {
         pm.bind(type, fn, origin, hash);
     };

     // unbind postmessage handler
     $.pm.unbind = window.pm.unbind = function(type, fn) {
         pm.unbind(type, fn);
     };

     // default postmessage origin on bind
     $.pm.origin = window.pm.origin = null;

     // default postmessage polling if using location hash to pass postmessages
     $.pm.poll = window.pm.poll = 200;

     var pm = {

         send: function(options) {
             var o = $.extend({}, pm.defaults, options),
             target = o.target;
             if (!o.target) {
                 console.warn("postmessage target window required");
                 return;
             }
             if (!o.type) {
                 console.warn("postmessage type required");
                 return;
             }
             var msg = {data:o.data, type:o.type};
             if (o.success) {
                 msg.callback = pm._callback(o.success);
             }
             if (o.error) {
                 msg.errback = pm._callback(o.error);
             }
             if (("postMessage" in target) && !o.hash) {
                 pm._bind();
                 target.postMessage(JSON.stringify(msg), o.origin || '*');
             }
             else {
                 pm.hash._bind();
                 pm.hash.send(o, msg);
             }
         },

         bind: function(type, fn, origin, hash) {
             if (("postMessage" in window) && !hash) {
                 pm._bind();
             }
             else {
                 pm.hash._bind();
             }
             var l = pm.data("listeners.postmessage");
             if (!l) {
                 l = {};
                 pm.data("listeners.postmessage", l);
             }
             var fns = l[type];
             if (!fns) {
                 fns = [];
                 l[type] = fns;
             }
             fns.push({fn:fn, origin:origin || $.pm.origin});
         },

         unbind: function(type, fn) {
             var l = pm.data("listeners.postmessage");
             if (l) {
                 if (type) {
                     if (fn) {
                         // remove specific listener
                         var fns = l[type];
                         if (fns) {
                             var m = [];
                             for (var i=0,len=fns.length; i<len; i++) {
                                 var o = fns[i];
                                 if (o.fn !== fn) {
                                     m.push(o);
                                 }
                             }
                             l[type] = m;
                         }
                     }
                     else {
                         // remove all listeners by type
                         delete l[type];
                     }
                 }
                 else {
                     // unbind all listeners of all type
                     for (var i in l) {
                       delete l[i];
                     }
                 }
             }
         },

         data: function(k, v) {
             if (v === undefined) {
                 return pm._data[k];
             }
             pm._data[k] = v;
             return v;
         },

         _data: {},

         _CHARS: '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split(''),

         _random: function() {
             var r = [];
             for (var i=0; i<32; i++) {
                 r[i] = pm._CHARS[0 | Math.random() * 32];
             };
             return r.join("");
         },

         _callback: function(fn) {
             var cbs = pm.data("callbacks.postmessage");
             if (!cbs) {
                 cbs = {};
                 pm.data("callbacks.postmessage", cbs);
             }
             var r = pm._random();
             cbs[r] = fn;
             return r;
         },

         _bind: function() {
             // are we already listening to message events on this w?
             if (!pm.data("listening.postmessage")) {
                 if (window.addEventListener) {
                     window.addEventListener("message", pm._dispatch, false);
                 }
                 else if (window.attachEvent) {
                     window.attachEvent("onmessage", pm._dispatch);
                 }
                 pm.data("listening.postmessage", 1);
             }
         },

         _dispatch: function(e) {
             //console.log("$.pm.dispatch", e, this);
             try {
                 var msg = JSON.parse(e.data);
             }
             catch (ex) {
                 console.warn("postmessage data invalid json: ", ex);
                 return;
             }
             if (!msg.type) {
                 console.warn("postmessage message type required");
                 return;
             }
             var cbs = pm.data("callbacks.postmessage") || {},
             cb = cbs[msg.type];
             if (cb) {
                 cb(msg.data);
             }
             else {
                 var l = pm.data("listeners.postmessage") || {};
                 var fns = l[msg.type] || [];
                 for (var i=0,len=fns.length; i<len; i++) {
                     var o = fns[i];
                     if (o.origin && e.origin !== o.origin) {
                         console.warn("postmessage message origin mismatch", e.origin, o.origin);
                         if (msg.errback) {
                             // notify post message errback
                             var error = {
                                 message: "postmessage origin mismatch",
                                 origin: [e.origin, o.origin]
                             };
                             pm.send({target:e.source, data:error, type:msg.errback});
                         }
                         continue;
                     }
                     try {
                         var r = o.fn(msg.data);
                         if (msg.callback) {
                             pm.send({target:e.source, data:r, type:msg.callback});
                         }
                     }
                     catch (ex) {
                         if (msg.errback) {
                             // notify post message errback
                             pm.send({target:e.source, data:ex, type:msg.errback});
                         }
                     }
                 };
             }
         }
     };

     // location hash polling
     pm.hash = {

         send: function(options, msg) {
             //console.log("hash.send", target_window, options, msg);
             var target_window = options.target,
             target_url = options.url;
             if (!target_url) {
                 console.warn("postmessage target window url is required");
                 return;
             }
             target_url = pm.hash._url(target_url);
             var source_window,
             source_url = pm.hash._url(window.location.href);
             if (window == target_window.parent) {
                 source_window = "parent";
             }
             else {
                 try {
                     for (var i=0,len=parent.frames.length; i<len; i++) {
                         var f = parent.frames[i];
                         if (f == window) {
                             source_window = i;
                             break;
                         }
                     };
                 }
                 catch(ex) {
                     // Opera: security error trying to access parent.frames x-origin
                     // juse use window.name
                     source_window = window.name;
                 }
             }
             if (source_window == null) {
                 console.warn("postmessage windows must be direct parent/child windows and the child must be available through the parent window.frames list");
                 return;
             }
             var hashmessage = {
                 "x-requested-with": "postmessage",
                 source: {
                     name: source_window,
                     url: source_url
                 },
                 postmessage: msg
             };
             var hash_id = "#x-postmessage-id=" + pm._random();
             target_window.location = target_url + hash_id + encodeURIComponent(JSON.stringify(hashmessage));
         },

         _regex: /^\#x\-postmessage\-id\=(\w{32})/,

         _regex_len: "#x-postmessage-id=".length + 32,

         _bind: function() {
             // are we already listening to message events on this w?
             if (!pm.data("polling.postmessage")) {
                 setInterval(function() {
                                 var hash = "" + window.location.hash,
                                 m = pm.hash._regex.exec(hash);
                                 if (m) {
                                     var id = m[1];
                                     if (pm.hash._last !== id) {
                                         pm.hash._last = id;
                                         pm.hash._dispatch(hash.substring(pm.hash._regex_len));
                                     }
                                 }
                             }, $.pm.poll || 200);
                 pm.data("polling.postmessage", 1);
             }
         },

         _dispatch: function(hash) {
             if (!hash) {
                 return;
             }
             try {
                 hash = JSON.parse(decodeURIComponent(hash));
                 if (!(hash['x-requested-with'] === 'postmessage' &&
                       hash.source && hash.source.name != null && hash.source.url && hash.postmessage)) {
                     // ignore since hash could've come from somewhere else
                     return;
                 }
             }
             catch (ex) {
                 // ignore since hash could've come from somewhere else
                 return;
             }
             var msg = hash.postmessage,
             cbs = pm.data("callbacks.postmessage") || {},
             cb = cbs[msg.type];
             if (cb) {
                 cb(msg.data);
             }
             else {
                 var source_window;
                 if (hash.source.name === "parent") {
                     source_window = window.parent;
                 }
                 else {
                     source_window = window.frames[hash.source.name];
                 }
                 var l = pm.data("listeners.postmessage") || {};
                 var fns = l[msg.type] || [];
                 for (var i=0,len=fns.length; i<len; i++) {
                     var o = fns[i];
                     if (o.origin) {
                         var origin = /https?\:\/\/[^\/]*/.exec(hash.source.url)[0];
                         if (origin !== o.origin) {
                             console.warn("postmessage message origin mismatch", origin, o.origin);
                             if (msg.errback) {
                                 // notify post message errback
                                 var error = {
                                     message: "postmessage origin mismatch",
                                     origin: [origin, o.origin]
                                 };
                                 pm.send({target:source_window, data:error, type:msg.errback, hash:true, url:hash.source.url});
                             }
                             continue;
                         }
                     }
                     try {
                         var r = o.fn(msg.data);
                         if (msg.callback) {
                             pm.send({target:source_window, data:r, type:msg.callback, hash:true, url:hash.source.url});
                         }
                     }
                     catch (ex) {
                         if (msg.errback) {
                             // notify post message errback
                             pm.send({target:source_window, data:ex, type:msg.errback, hash:true, url:hash.source.url});
                         }
                     }
                 };
             }
         },

         _url: function(url) {
             // url minus hash part
             return (""+url).replace(/#.*$/, "");
         }

     };

     $.extend(pm, {
                  defaults: {
                      target: null,  /* target window (required) */
                      url: null,     /* target window url (required if no window.postMessage or hash == true) */
                      type: null,    /* message type (required) */
                      data: null,    /* message data (required) */
                      success: null, /* success callback (optional) */
                      error: null,   /* error callback (optional) */
                      origin: "*",   /* postmessage origin (optional) */
                      hash: false    /* use location hash for message passing (optional) */
                  }
              });

 })(this, typeof jQuery === "undefined" ? NO_JQUERY : jQuery);

/**
 * http://www.JSON.org/json2.js
 **/
if (! ("JSON" in window && window.JSON)){JSON={}}(function(){function f(n){return n<10?"0"+n:n}if(typeof Date.prototype.toJSON!=="function"){Date.prototype.toJSON=function(key){return this.getUTCFullYear()+"-"+f(this.getUTCMonth()+1)+"-"+f(this.getUTCDate())+"T"+f(this.getUTCHours())+":"+f(this.getUTCMinutes())+":"+f(this.getUTCSeconds())+"Z"};String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(key){return this.valueOf()}}var cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,escapable=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,gap,indent,meta={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},rep;function quote(string){escapable.lastIndex=0;return escapable.test(string)?'"'+string.replace(escapable,function(a){var c=meta[a];return typeof c==="string"?c:"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+string+'"'}function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==="object"&&typeof value.toJSON==="function"){value=value.toJSON(key)}if(typeof rep==="function"){value=rep.call(holder,key,value)}switch(typeof value){case"string":return quote(value);case"number":return isFinite(value)?String(value):"null";case"boolean":case"null":return String(value);case"object":if(!value){return"null"}gap+=indent;partial=[];if(Object.prototype.toString.apply(value)==="[object Array]"){length=value.length;for(i=0;i<length;i+=1){partial[i]=str(i,value)||"null"}v=partial.length===0?"[]":gap?"[\n"+gap+partial.join(",\n"+gap)+"\n"+mind+"]":"["+partial.join(",")+"]";gap=mind;return v}if(rep&&typeof rep==="object"){length=rep.length;for(i=0;i<length;i+=1){k=rep[i];if(typeof k==="string"){v=str(k,value);if(v){partial.push(quote(k)+(gap?": ":":")+v)}}}}else{for(k in value){if(Object.hasOwnProperty.call(value,k)){v=str(k,value);if(v){partial.push(quote(k)+(gap?": ":":")+v)}}}}v=partial.length===0?"{}":gap?"{\n"+gap+partial.join(",\n"+gap)+"\n"+mind+"}":"{"+partial.join(",")+"}";gap=mind;return v}}if(typeof JSON.stringify!=="function"){JSON.stringify=function(value,replacer,space){var i;gap="";indent="";if(typeof space==="number"){for(i=0;i<space;i+=1){indent+=" "}}else{if(typeof space==="string"){indent=space}}rep=replacer;if(replacer&&typeof replacer!=="function"&&(typeof replacer!=="object"||typeof replacer.length!=="number")){throw new Error("JSON.stringify")}return str("",{"":value})}}if(typeof JSON.parse!=="function"){JSON.parse=function(text,reviver){var j;function walk(holder,key){var k,v,value=holder[key];if(value&&typeof value==="object"){for(k in value){if(Object.hasOwnProperty.call(value,k)){v=walk(value,k);if(v!==undefined){value[k]=v}else{delete value[k]}}}}return reviver.call(holder,key,value)}cx.lastIndex=0;if(cx.test(text)){text=text.replace(cx,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})}if(/^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){j=eval("("+text+")");return typeof reviver==="function"?walk({"":j},""):j}throw new SyntaxError("JSON.parse")}}}());

pm.bind("windowHeightMessage", function(data) {
  jQuery('#casino-lobby-frame').height(data.height);
});

jQuery(function(){

   jQuery('.promotion-entry .links a.more-info').click(function(){
      jQuery(this).hasClass('opened') ? jQuery(this).removeClass('opened') : jQuery(this).addClass('opened');
      jQuery(this).parents('.promotion-entry').next('.text-entry').slideToggle();
      return false;
   });

});



