//output flash
function outputflash(ur,w,h){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="'+w+'" height="'+h+'">');
	document.write('<param name="movie" value="'+ur+'">');
	document.write('<param name="quality" value="high"> ');
	document.write('<param name="wmode" value="transparent"> ');
	document.write('<param name="menu" value="false"> ');
	document.write('<embed src="'+ur+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="'+w+'" height="'+h+'" quality="High" wmode="transparent">');
	document.write('</embed>');
	document.write('</object>');
}

//indexFocus
function indexFocus(w,h,t){
	var swf_width=w;
	var swf_height=h;
	var config=t;
	//var config='3|FFFFFF|ff0000|50|0xffffff|0x0099ff|0x000000';
	//-- config 参数设置 -- 自动播放时间(秒)|文字颜色|文字背景色|文字背景透明度|按键数字颜色|当前按键颜色|普通按键色彩 --
	var files='images/tmp_mc_1.jpg|images/tmp_mc_5.jpg|images/tmp_mc_6.jpg|images/tmp_mc_1.jpg';
	var links='http://www.163.com/|http://www.163.com/|http://www.163.com/|http://www.163.com';
	//var texts='1|2|3|4';
	var texts='';
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ swf_width +'" height="'+ swf_height +'">');
	document.write('<param name="movie" value="script/index_focus/focus.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name=wmode value="opaque" />');
	document.write('<param name="FlashVars" value="config='+config+'&bcastr_flie='+files+'&bcastr_link='+links+'&bcastr_title='+texts+'" />');
	document.write('<embed src="script/index_focus/focus.swf" wmode="opaque" FlashVars="config='+config+'&bcastr_flie='+files+'&bcastr_link='+links+'&bcastr_title='+texts+'& menu="false" quality="high" width="'+ swf_width +'" height="'+ swf_height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
};

//index地图弹出popo
$(function(){
	$(".actives_cont").find(".maps").find("a").mouseover(function(){
		var title=$(this).attr("title");
		var o=$(this).offset();
		var popo=$("#popo");
		$(popo).css("top",o.top-30+"px").css("left",o.left+"px").html(title).show();
	})
});
