var GamesCount=0;
var GamesLimit=3;

function OpenGame(W,H,Path,File){
	if(GamesCount==GamesLimit){
		alert('Вы не можете открыть больше '+GamesLimit+' игр. Перезагрузите страницу.');
		return;
	}
	var Top=Math.round((screen.availWidth-W)/2);
	var Left=Math.round((screen.availHeight-H)/2);
	Games=window.open(Path+File,'','screenX='+Left+',screenY='+Top+',width='+W+',height='+H+',toolbar=no,location=no,resizable=no,scrollbars=no,fullscreen=no');
//	Games.moveTo(Top,Left);
	Games.focus();
	GamesCount++;
}
