//
// 23/12/2007 lsd comment
//var IE = document.all ? true : false;
//var winWidth = IE ? document.body.clientWidth : window.innerWidth;
//var winHeight = IE ? document.body.clientHeight : window.innerHeight;

var Opera = window.opera;
if(Opera) {
  var winWidth = window.innerWidth;
  var winHeight = window.innerHeight;
} else {
  var winWidth = document.documentElement.clientWidth;
  var winHeight = document.documentElement.clientHeight;
}


//
function openFlash(room, size) {
  if(screen.width){
	swidth = screen.width;
	sheight = screen.height;
  }else{
	swidth=800;
	sheight=600;
  }
  x = (swidth-790-10)/2;
  y = (sheight-545-60)/2;
  if (x < 0) x = 0;
  if (y < 0) y = 0;

//		url = 'https://www.gammongame.com/flash/flash.php?session=$session&login_session=$login_session&language=$language&domain=$domain_name';
  url = flash_url_;
  bg_flash = window.open(url,'GammonGame', 'width=790, height=545');
  bg_flash.moveTo(x,y); // window align is center;
}