﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Flash小游戏</title>
<script src="../common/js/jquery-1.2.6.pack.js" type="text/javascript"></script>
<script src="jquery.query-2.1.7.js" type="text/javascript"></script>
<style>
*{margin:0;padding:0;list-style:none;}
</style>
<script type="text/javascript">
	function _init()
	{
	var url = $.query.get('url');
	var arrayurl = url.split('?');
	document.title = arrayurl[0];
		var _s = "";
		_s += "<object id='flashgame' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='100%' height='100%'>";
		_s += "<param name='base' value='.'></param>";
		_s += "<param name='quality' value='high'>";
		_s += "<param name='allowScriptAccess' value='always' >";
		_s += "<param name='movie' value='"+url+"'>";
		_s += "<embed base='.' src='' quality='high' allowScriptAccess='always' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='100%' height='100%'></embed>";
		_s += "</object>";
		document.body.innerHTML = _s;
	}
</script>
</head>
<body onload="_init()" >
</body>
</html>