// JavaScript DocumentModelArray = new Array();  ModelArray[0] = new Array("2G","S1|S500|S505|S600|Touch|Touch Diamond|Touch HD|Touch Pro|Touch VIVA","S1|S500|S505|S600|touch|touchdiamond|touchhd|touchpro|touchviva");  ModelArray[1] = new Array("3G","S700","S700"); ModelArray[2] = new Array("早期系列","310|566|575|585|586|696|710|818|828+|830|838|C720|C730|C750|C858|D600|D802|P100|P660|P800|P860","310|566|575|585|586|696|710|818|828+|830|838|C720|C730|C750|C858|D600|D802|P100|P660|P800|P860");ModelArray[3] = new Array("请选择","请选择","请选择")function getModel(currseries){   	var currseries = currseries;	var i,j,k;	document.all.selModel.length = 0 ; 	for (i = 0 ;i <ModelArray.length;i++)	{    		if(ModelArray[i][0]==currseries)		{   			tmpNameArray = ModelArray[i][1].split("|")			tmpPidArray = ModelArray[i][2].split("|")			for(j=0;j<tmpNameArray.length;j++)			{    				document.all.selModel.options[document.all.selModel.length] = new Option(tmpNameArray[j],tmpPidArray[j]); 			}		} 	} 	changeModel(selModel.options[selModel.selectedIndex].text,selModel.options[selModel.selectedIndex].value);}function changeModel(Name,pid){	if (Name=="请选择")	{		window.modelrep.innerHTML="";		window.Faqlist.innerHTML="";	}	else	{		str='<table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"><tr><td width="35%"><div align="center"><a href="../product/productdetail/product.php?id='+pid+' " target="main"><img src="../product/image/product_pic/sp/'+pid+'-s.jpg" width="40"  border="0"/></a></div></td><td width="65%"><table> <tr><td><span class="textarea">' +Name+'</span></td></tr><tr><td height="35"><p class="textarea">多普达 '+Name+'<br /> </p></td></tr><tr><td align="baseline"><a href="../product/productdetail/product.php?id='+pid+' " target="main"><img src="../image/more_1.jpg" width="29" height="5" /></a></td></tr></table></td></tr> </table>'		// alert(str);		window.modelrep.innerHTML=str;			str1=' <iframe id="myTestFrameID" onload="javascript:{dyniframesize(\'myTestFrameID\');}" height="665px" width="687px" src="help/help_'+pid+'.php"     frameborder="0"> </iframe>'; 		// alert(str);		window.Faqlist.innerHTML=str1;	}}

