var idName = 'small';

function enlargeFlashGame()
{
	var buttonImage = document.getElementById("button-enlarge");
  var text_submenu_instant_text = document.getElementById("text_submenu_instant_text");
  var casinoGame;
  var browser=navigator.appName;
  if (browser == "Netscape")
  {
    casinoGame = document.getElementById("flashgameframe");
  }
  else
  {
    casinoGame = document.getElementById("FlashObject"); 
  }
  //var casinoGame = document.getElementById("box_cont_top_instant");
  var box_cont_bot_instant = document.getElementById("box_cont_bot_instant");
  var cont_top_instant = document.getElementById("cont_top_instant");
  var box_ltop_instant = document.getElementById("box_ltop_instant");
  var box_rbot_instant = document.getElementById("box_rbot_instant");
  var box_rtop_instant = document.getElementById("box_rtop_instant");
  var box_cont_top_instant = document.getElementById("box_cont_top_instant");
  var oIfr = document.getElementById('rightmenuiframe'); 
  	
	if(idName == 'small')
	{
		// go to "full screen mode"
		idName = 'large';
    text_submenu_instant_text.innerHTML = 'MINIMIZE';

    cont_top_instant.className = 'cont_game_instant';
    box_rbot_instant.className = '';    
    box_ltop_instant.className = '';
    box_cont_top_instant.className = 'box_game_instant';
  
    casinoGame.style.width = '800px';
    casinoGame.style.height = '599px';
    
    box_cont_bot_instant.style.display = 'none';
    box_rtop_instant.style.display = 'none';
    oIfr.style.display = 'none';
	}
	else	
	{
		// go to "normal screen mode"		
		idName = 'small';	
    text_submenu_instant_text.innerHTML = 'MAXIMIZE';

    cont_top_instant.className = 'cont_top_instant';
    box_rbot_instant.className = 'box_rbot_instant';
    box_ltop_instant.className = 'box_ltop_instant';
    box_cont_top_instant.className = 'box_cont_top_instant';
    
    casinoGame.style.width = '548px';
    casinoGame.style.height = '410px';
    
    box_cont_bot_instant.style.display = 'block';
    box_rtop_instant.style.display = 'block';
    oIfr.style.display = 'block';
	}	
}