function Config()
{
this.channelId = new Array();
//this.channelId = new Array("11"=>"中国之声","12"=>"经济之声","13"=>"音乐之声","14"=>"都市之声","16"=>"神舟之声","17"=>"华夏之声","22"=>"华夏双语","18"=>"民族之声","19"=>"文艺之声","35"=>"老年之声","40"=>"藏语之声","42"=>"娱乐之声","15"=>"中华之声");
//this.channelId["11"] 为我们自己channelId;
//"中国之声,1" 汉字为我们自己的channelTitle ，而1为他们传来的id;
this.channelId["11"]="中国之声,1";
this.channelId["12"]="经济之声,2";
this.channelId["13"]="音乐之声,3";
this.channelId["14"]="都市之声,11";
this.channelId["16"]="神州之声,13";
this.channelId["17"]="香港之声,14";
this.channelId["22"]="华夏之声,17";
this.channelId["18"]="民族之声,15";
this.channelId["19"]="文艺之声,16";
this.channelId["35"]="老年之声,18";
this.channelId["40"]="藏语之声,20";
this.channelId["42"]="娱乐之声,24";
this.channelId["15"]="中华之声,12";
this.channelId["45"]="维语广播,22";
this.channelId["41"]="银河台,21";
this.init=function(id)
	{
		if(id.length == 0||id == null) id = 11;
		for( key in this.channelId )
		{
			if(key==id)
			{
				tmpArr = this.channelId[key].split(",");
				return tmpArr[1]+","+tmpArr[0];
			}

		}

	}
}





