		function ShowForexRate()
		{
			var vForex;
			vForex = '<div style=" font-size:12px; font-weight:bold; color:Red;overflow-y:scroll;height:283px;width:170px;border: 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=" text-align:left; padding-left:5px;width:60px;height:25px;float:left;text-align:left"><label class="box-item" style="padding-left:4px;line-height:20px;">'+ vForexs[i] +'</label></div>';
					vForex += '<div style="float:left;width:1px;height:25px;font-size:1px;overflow:hidden;background-color:#a8a8a8;">&nbsp;</div>';
					vForex += '<div style=" width:75px;height:25px;float:left;text-align:right"><label class="box-item" style="padding-right:4px;line-height:20px;">'+ 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();
		
		function ShowGoldPrice()
		{
			var vGold;
			Ban='Ban'
			vGold = '<table class="bd1" cellpadding="2" cellspacing="2" align="center">';
			vGold += '<tr><td class="bdbr" style="height:18px;float:left; padding-left:5px;" align="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:18px;float:left; padding-right:5px;" align="right"><div style="width:90px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vGoldBuy +'</label></div></td></tr>';
			
			vGold += '<tr><td class="bdr" style="height:18px;float:left; padding-left:5px;" align="left"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ Ban +'</label></div></td>';
			vGold += '<td style="height:18px;float:left; padding-right:5px;" align="right"><div style="width:90px;"><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 ShowWeatherPrice()
		{
			var vWeather;
			vWeather = '<table class="bd1" cellpadding="2" cellspacing="0">';
			vWeather += '<tr><td class="bdbr" style=" padding-left:5px;height:20px;float:left;" align="left"><div style="width:90px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vHanoi +'</label></div></td>';
			vWeather += '<td class="bdb" style="height:20px;float:left;"  padding-right:5px;" align="right"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ dHanoi +'<sup>o</sup></label></div></td></tr>';
			
			vWeather += '<tr><td class="bdbr" style=" padding-left:5px;height:20px;float:left;" align="left"><div style="width:90px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vHaiPhong +'</label></div></td>';
			vWeather += '<td class="bdb" style="height:20px;float:left;"  padding-right:5px;" align="right"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ dHaiPhong +' <sup>o</sup></label></div></td></tr>';
			
			vWeather += '<tr><td class="bdbr" style=" padding-left:5px;height:20px;float:left;" align="left"><div style="width:90px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vDaNang +'</label></div></td>';
			vWeather += '<td class="bdb" style="height:20px;float:left;"  padding-right:5px;" align="right"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ dDaNang +' <sup>o</sup></label></div></td></tr>';
			
			vWeather += '<tr><td class="bdr" style=" padding-left:5px;height:20px;float:left;" align="left"><div style="width:90px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vHoChiMinh +'</label></div></td>';
			vWeather += '<td  style="height:20px;float:left;"  padding-right:5px;" align="right"><div style="width:60px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ dHoChiMinh +' <sup>o</sup></label></div></td></tr>';
			vWeather += '</table>';
			document.getElementById("eWeather").innerHTML = vWeather;
		}
		ShowWeatherPrice();


		

