var serverArr = [
		["qq","http://games.qq.com","上海电信"],
		["my","http://www.5com.cn","上海电信"],
		["abs","","绝对地址"],
		["s04","http://flash.7k7k.com/fl_7","7k7k游戏"],
		["s05","http://flash.7k7k.com","7k7k游戏"],
		["s06","http://www.3839g.com","3839游戏"],
		["s07","http://flash.3839.com","3839游戏"],
		["sh$","http://files2.17173.com/","福建电信"],
		["ss$","http://www.ff130.com:8080/4399swf/","CDN加速4"],
		["zh$","http://game.zhuhai.gd.cn/Games/GameFlash/","广东电信"],
		["sd$","http://iask.shangdu.com/flash/","河南网通2"]
	];

function GetFlashUrl(typename){
	var GetUrl="";
	for(var i=0;i<serverArr.length;i++)
	if (typename.indexOf(serverArr[i][0]) > -1)
		{
			GetUrl=serverArr[i][1];
			break;
		}
	return GetUrl;
}