		function ShowWeatherPrice()
		{
			var vWeather;
			vWeather = '<table class="bd1" cellpadding="2" cellspacing="0">';
			vWeather += '<tr><td class="bdbr" style="height:15px;float:left;"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vHanoi +'</label></div></td>';
			vWeather += '<td class="bdb" style="height:15px;float:left;"><div style="width:100px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ dHanoi +'<sup>o</sup>C</label></div></td></tr>';
			
			vWeather += '<tr><td class="bdbr" style="height:15px;float:left;"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vHaiPhong +'</label></div></td>';
			vWeather += '<td class="bdb" style="height:15px;float:left;"><div style="width:100px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ dHaiPhong +'<sup>o</sup>C</label></div></td></tr>';
			
			vWeather += '<tr><td class="bdbr" style="height:15px;float:left;"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vDaNang +'</label></div></td>';
			vWeather += '<td class="bdb" style="height:15px;float:left;"><div style="width:100px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ dDaNang +'<sup>o</sup>C</label></div></td></tr>';
			
			vWeather += '<tr><td class="bdr" style="height:15px;float:left;"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vHoChiMinh +'</label></div></td>';
			vWeather += '<td style="height:15px;float:left;"><div style="width:100px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ dHoChiMinh +'<sup>o</sup>C</label></div></td></tr>';
			vWeather += '</table>';
			document.getElementById("eWeather").innerHTML = vWeather;
		}
		ShowWeatherPrice();


		function ShowGoldPrice()
		{
			var vGold;
			vGold = '<table class="bd1" cellpadding="2" cellspacing="0">';
			vGold += '<tr><td class="bdbr" style="height:15px;float:left;"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">Mua</label></div></td>';
			vGold += '<td class="bdb" style="height:15px;float:left;"><div style="width:100px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vGoldBuy +'</label></div></td></tr>';
			
			vGold += '<tr><td class="bdr" style="height:15px;float:left;"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">Ban</label></div></td>';
			vGold += '<td style="height:15px;float:left;"><div style="width:100px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vGoldSell +'</label></div></td></tr>';
			vGold += '</table>';
			document.getElementById("eGold").innerHTML = vGold;
		}
		ShowGoldPrice();
		
		function ShowForexRate()
		{
			var vForex;
			vForex = '<div style="position:related;overflow-y:scroll;height:113px;width:170px;background-color:#ffffff;border-left: 1px solid #a8a8a8;">';
			for(var i=0;i<vForexs.length;i++){
				if (typeof(vForexs[i]) !='undefined' && typeof(vCosts[i]) !='undefined'){
					vForex += '<div style="float:left;width:150px;height:1px;font-size:1px;overflow:hidden;background-color:#a8a8a8;">&nbsp;</div>';					
					vForex += '<div style="width:38px;height:15px;float:left;text-align:left"><label class="box-item" style="padding-left:4px;line-height:15px;">'+ vForexs[i] +'</label></div>';
					vForex += '<div style="float:left;width:1px;height:15px;font-size:1px;overflow:hidden;background-color:#a8a8a8;">&nbsp;</div>';
					vForex += '<div style="width:70px;height:15px;float:left;text-align:right"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vCosts[i] +'</label></div>';					
					if (i == (vForexs.length-1)) {
					vForex += '<div style="float:left;width:111px;height:1px;font-size:1px;overflow:hidden;background-color:#a8a8a8;">&nbsp;</div>';
					}
				}
			}
			vForex += '</div>';
			document.getElementById("eForex").innerHTML = vForex;
		}
		ShowForexRate();

