function open_games(filename, x, y){
	w = window.open('',filename,'width=' + x + ',height=' + y + ',location=no,nenubar=no,sesizable=no,scrollbars=no,toolbar=no' );
	w.document.write('<html><head><title>');
	w.document.write( filename );
	w.document.write('.exe</title><meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"></head>');
	w.document.write('<body bgcolor="#000000" topmargin=0 leftmargin=0 marginwidth=0 marginheight=0><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" ID=42 WIDTH=');
	w.document.write( x + ' HEIGHT=' + y );
	w.document.write('> <PARAM NAME=movie VALUE="');
	w.document.write(filename);
	w.document.write('.swf"> <PARAM NAME=menu VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#000000> <EMBED src="');
	w.document.write(filename);
	w.document.write('.swf" menu=false quality=high bgcolor=#000000  WIDTH=');
	w.document.write( x + ' HEIGHT=' + y );
	w.document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></OBJECT>');
	w.document.write('</body></html>');
}
