function Pic(city,RecommandedHotel_Count,Str_Campaign_ID){
	table_pic_value='';
	table_pic_value='<table width="100%" border="0" cellspacing="0" cellpadding="0">';
	for (i=0;i<RecommandedHotel_pic_all[0].length;i++){
		if (RecommandedHotel_pic_all[3][i]==city){
			//
			url='showhotel.asp?campaign_id='+Str_Campaign_ID+'&id='+RecommandedHotel_pic_all[0][i]+'&hotel_id='+RecommandedHotel_pic_all[1][i]+'&hotel_name='+RecommandedHotel_pic_all[2][i];
			table_pic_value=table_pic_value+'<tr>'; 
			table_pic_value=table_pic_value+'<td width="56%" height="90" align="center"><a href="'+url+'" target="_top"><img src="'+RecommandedHotel_pic_all[7][i]+'" width="120" height="70" border="0" target="_top"></a></td>'; 
			table_pic_value=table_pic_value+'<td width="44%" height="90"><a href="'+url+'" target="_top">'+RecommandedHotel_pic_all[2][i]+'</a><br> <font color="#275EA3"><strong>门市价</strong>：<strong><s>&yen; </s></strong><s>'+RecommandedHotel_pic_all[4][i]+'</s></font> '; 
			table_pic_value=table_pic_value+'<br> <strong><font color="#FF6600">会员价：&yen; '+RecommandedHotel_pic_all[5][i]+' </font></strong></td>'; 
			table_pic_value=table_pic_value+'</tr>'; 
			//计数减1
			RecommandedHotel_Count=RecommandedHotel_Count-1;
			if (RecommandedHotel_Count<1) {
				break;
			}
		}
	}
	table_pic_value=table_pic_value+"</table>";
	window.table_pic.innerHTML=table_pic_value;
}
