/**
* Start a game in a new window.
* Wndow dimensions [770, 470].
*
* @param gameID The fame ID.
* @param difficulty Difficulty (s, m, l).
*/
function playGame(gameID, difficulty) {
	var base = 'http://www.lexadoig.cz/games-resources/creasoft/' + gameID + '/';
	var source = 'online-jigsaw-puzzles.swf?loadgame=lexa' + gameID + '_' + difficulty + '_1&check=7152066';
	var gameObject = '<OBJECT style="position:absolute; left:0px; top:0px;" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="760" HEIGHT="460" id="online-jigsaw-puzzles"><PARAM NAME=quality VALUE=high><PARAM NAME=scale VALUE=noscale><PARAM NAME=bgcolor VALUE=#FFFFFF><PARAM NAME=movie VALUE="' + source + '"><EMBED src="' + source + '" quality=high scale=noscale bgcolor=#FFFFFF WIDTH="760" HEIGHT="460" NAME="online-jigsaw-puzzles" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT><br><div>Crea-Soft\'s <a href="http://www.crea-soft.com" title="CreaSoft">Jigsaw Puzzles</a> are (C)opyright www.crea-soft.com (Traian Trante) and are used on this site with the permission from the owner.</div>';
	var code = '<html><head><base href="' + base + '" /><title>Herní okno</title></head><body style="background-color: #FFFFFF;">' + gameObject + '</body></html>';

	this.gameWindow = function() {
	return window.open("", "_blank", "toolbar=no, directories=no, status=no, scrollbars=no, resize=no, menubar=no, height=460, width=760");
	}

	var win = this.gameWindow();
	win.document.write(code);
}