window.onload = function()
{
  //CCL.Init('Deck,Display,Poll,Shop,Test,XML', start);
}
function start()
{
  if(CCL.Debug)
    CCL.Warn('CCL load complete.');
}

function iFrameHeight() {
  var iframe = $('shopframe');
  var h = '400px';
  if (iframe.contentDocument)
    h = iframe.contentDocument.body.scrollHeight + 'px';
  else if (iframe.document)
  {
    h = iframe.document.body.scrollHeight + 'px';
  }
  
  iframe.style.height = h;
}

