function gs_showSwfEx(zFileName, zWidth, zHeight) {
	document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,2*,0" width="' + zWidth + '" height="' + zHeight + '">');
	document.writeln('<param name="AllowScriptAccess" value="sameDomain"> ');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="menu" value="false">');
	document.writeln('<param name="movie" value="' + zFileName + '">');
	document.writeln('<param name="wmode" value="Transparent">');
	document.writeln('<embed AllowScriptAccess="sameDomain" src="' + zFileName + '" width="' + zWidth + '" height="' + zHeight + '" wmode="Transparent"></embed>');
	document.writeln('</object>');
}
function MovUrl()
{
	gs_showSwfEx('../swf/top.swf','100%','194');
}
function MovUrl2()
{
	gs_showSwfEx('../swf/main.swf','100%','828');
}
function openwindow(url,name,iWidth,iHeight)
{
   var url;                                  //转向网页的地址;
   var name;                            //网页名称，可为空;
   var iWidth;                           //弹出窗口的宽度;
   var iHeight;                        //弹出窗口的高度;
   var iTop = (window.screen.availHeight-30-iHeight)/2;        //获得窗口的垂直位置;
   var iLeft = (window.screen.availWidth-10-iWidth)/2;           //获得窗口的水平位置;
   window.open(url,name,'height='+iHeight+',,innerHeight='+iHeight+',width='+iWidth+',innerWidth='+iWidth+',top='+iTop+',left='+iLeft+',toolbar=no,menubar=no,scrollbars=yes,resizeable=no,location=no,status=no');
}
