function Top12(city,Str_Campaign_ID){
	num=0;
	table_top12_value='';
	star='';
	table_top12_value='<table width="100%" border="0" cellspacing="0" cellpadding="0">';
	for (i=0;i<RecommandedHotel_top12_all[0].length;i++){
		if (RecommandedHotel_top12_all[3][i]==city){
			num=num+1;
			//if (RecommandedHotel_top12_all[6][i]!=""){
			//	url=RecommandedHotel_top12_all[6][i];
			//}
			//else{			
				url='showhotel.asp?campaign_id='+Str_Campaign_ID+'&id='+RecommandedHotel_top12_all[0][i]+'&hotel_id='+RecommandedHotel_top12_all[1][i]+'&hotel_name='+RecommandedHotel_top12_all[2][i];
			//}
			star_num=new Number(RecommandedHotel_top12_all[7][i]);
			star=''
			if (star_num==0){
				star='青年旅馆';
			}
			else if (star_num==9){
				star='客栈';
			}
			else{
				for (pos_star=0;pos_star<star_num;pos_star++){
					star=star+'★';
				}
			}
			table_top12_value=table_top12_value+'<tr align="center"> ';
			table_top12_value=table_top12_value+'<td width="45" height="25">'+num+'</td>';
			table_top12_value=table_top12_value+'<td width="155" height="25" align=left><a href="'+url+'">'+RecommandedHotel_top12_all[2][i]+'</a></td>';
			table_top12_value=table_top12_value+'<td width="130" height="25">门市价：<s><strong>&yen; '+RecommandedHotel_top12_all[4][i]+'</strong></s></td>';
			table_top12_value=table_top12_value+'<td width="119" height="25">会员价：<font color="#FF0000"><strong>&yen; '+RecommandedHotel_top12_all[5][i]+'</strong></font></td>';
			table_top12_value=table_top12_value+'<td width="95" height="25"><font color="#FF0000">'+star+'</font></td>';
			if (Str_Campaign_ID=="68310550") {//如果是上海龙伟，替换预定按钮图片
				table_top12_value=table_top12_value+'<td width="60" height="25"><a href="'+url+'"><img src="img/b_dis.jpg" border="0"></a></td>';
			}
			else
			{
				table_top12_value=table_top12_value+'<td width="60" height="25"><a href="'+url+'"><img src="/images/hotel/b_res.gif" border="0"></a></td>';
			}
			table_top12_value=table_top12_value+'</tr>';
			//2004-10-29 陈康增加 表格加线 
			table_top12_value=table_top12_value+'<tr >';
			table_top12_value=table_top12_value+'<td height="1" colspan="6" align="right" bgcolor="gray"></td>';
      table_top12_value=table_top12_value+'</tr>';

		}
	}
	if (city!="all2"){
		table_top12_value=table_top12_value+'<tr height="30"><td>&nbsp;</td><td colspan="5" align="left">&nbsp;&nbsp;<a href="findhotel.asp?campaign_id='+Str_Campaign_ID+'&city_id='+city+'" target="_blank">更多>></a></td></tr>';
	}
	else{
		table_top12_value=table_top12_value+'<tr height="30"><td>&nbsp;</td><td colspan="5" align="left">&nbsp;&nbsp;<a href="city_list.asp?campaign_id='+Str_Campaign_ID+'" target="_blank">更多>></a></td></tr>';
	}
	table_top12_value=table_top12_value+"</table>";
	window.table_top12.innerHTML=table_top12_value;
}
