﻿//map的显示返回字符
function showmaps(hbname){  
	var showString='<a href="http://www.nokia.com.cn/A41013485"';
	showString += 'onClick="_hbLink(\'cnmaps';
	showString += hbname;
	showString += '_images\',\'\',\'\');">';
	showString +='<img src="/NOKIA_CHINA_72/Get_Support/Common_elements/images/map_img.gif" width="193" height="97" border="0"></a>免费下载诺基亚地图！随即开始探索新世界！<br>';
	showString +='<a href="http://www.nokia.com.cn/A41013485"';
	showString += ' onClick="_hbLink(\'cnmaps';
	showString += hbname;
	showString += '_text\',\'\',\'\');">';
	showString +='了解更多>></a>';
	return showString;
}
//music的显示返回字符
function showmusics(hbname){  
	var showString='<a href="http://www.nokia.com.cn/A4581189"';
	showString += 'onClick="_hbLink(\'cnmusic';
	showString += hbname;
	showString += '_images\',\'\',\'\');">';
	showString +='<img src="/NOKIA_CHINA_72/Get_Support/Common_elements/images/music_img.jpg" width="193" height="97" border="0"></a>畅享视听盛筵，独到乐评；玩转手机音乐，缤纷下载。<br>';
	showString +='<a href="http://www.nokia.com.cn/A4581189"';
	showString += ' onClick="_hbLink(\'cnmusic';
	showString += hbname;
	showString += '_text\',\'\',\'\');">';
	showString +='了解更多>></a>';
	return showString;
}


function gohbname(types){
   // var mlc="/support/Product+Support/nokia+n95";//MULTI-LEVEL CONTENT CATEGORY
	if(hbx.mlc.indexOf("/Product+Support/")>=0)
	{
	  	var phonename = hbx.mlc.split("nokia+")[1];
		var other = phonename.split("/");
		var hbname = "";
		
		if(other.length==1)
		{
			hbname = other[0]+"supportmain";
		}
		else
		{
			if(other[1]=="Phone+software")
			{
				hbname = other[0]+"phonesoftware";
			}
			else if(other[1] == "pc+suite")
			{
				hbname = other[0]+"pcsuite";
			}
		}
		
		if(types=="music"){
			document.getElementById("music").innerHTML=showmusics(hbname);
			}
		else if(types=="map"){	
				document.getElementById("map").innerHTML=showmaps(hbname);
			}
		
		
	}
	
}