// JavaScript Document

function openGame(name, url, width, height) {
	window.open(url, name, 'width=' + width + ', ' + 'height=' + height + ', toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no');
}