function EIS(url) {
	var title = "Flash Game";
	var w = screen.width;
	var h = screen.height;
	var iw = 600;
	var ih = 400;
	var posLeft = ((w-iw)/2);
	var posTop = ((h-ih)/2);
	var url = "games/" + url + "/" + url;
	newWindow = window.open("","newWindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,width="+iw+",height="+ih+", left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+title+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="#003333">'); 
	newWindow.document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="600" height="400" id="'+url+'" align="middle">');
	newWindow.document.write('<param name="allowScriptAccess" value="sameDomain" />');
	newWindow.document.write('<param name="movie" value="'+url+'.swf" />');
	newWindow.document.write('<param name="menu" value="false" />');
	newWindow.document.write('<param name="quality" value="high" />');
	newWindow.document.write('<param name="bgcolor" value="#003333" />');
	newWindow.document.write('<embed src="'+url+'.swf" menu="false" quality="high" bgcolor="#003333" width="600" height="400" name="'+url+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	newWindow.document.write('</object></body></html>');
	newWindow.document.close();
	newWindow.focus();
}