		function ShowForexRate()
		{
			var vForex;
			vForex = '<table style="border-top: #dddddd 1px solid;border-left: #dddddd 1px solid;width:100%;" cellpadding="0" cellspacing="0"><tr><td><table cellpadding="2" cellspacing="0" style="width:100%;">';
			for(var i=0;i<vForexs.length-1;i++){
				if (typeof(vForexs[i]) !='undefined' && typeof(vCosts[i]) !='undefined'){
				    vForex +='<tr><td style="border-bottom: #dddddd 1px solid;border-right: #dddddd 1px solid;"><div style="width:62px;color:#000000;">'+ vForexs[i] +'</div></td><td style="border-bottom: #dddddd 1px solid;border-right: #dddddd 1px solid;width:100%;color:#ff0000;text-align:right;">'+ vCosts[i] +'</td></tr>'
					if (i == (vForexs.length-1)) {
					}
				}
			}
			vForex += '</table></td></tr></table>';
			document.getElementById("eForex").innerHTML = vForex;
		}
		ShowForexRate();

		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-item2" style="padding-right:4px;line-height:15px;">Mua</label></div></td>';
			vGold += '<td class="bdb" style="height:15px;float:left;"><div style="width:109px;text-align:right;"><label class="box-item1" 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-item2" style="padding-right:4px;line-height:15px;">Ban</label></div></td>';
			vGold += '<td style="height:15px;float:left;"><div style="width:109px;text-align:right;"><label class="box-item1" style="padding-right:4px;line-height:15px;">'+ vGoldSell +'</label></div></td></tr>';
			vGold += '</table>';
			document.getElementById("eGold").innerHTML = vGold;
		}
		ShowGoldPrice();
		


