		function ShowWeatherPrice()
		{
			var vWeather;
			vWeather = '<table style="width:100%;" cellpadding="0" cellspacing="0">';
			vWeather += '<tr style="background-color:#f3b928;"><td style="height:25px;padding-left:3px;"><div style="width:70px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vHanoi +'</label></div></td>';
			vWeather += '<td style="height:15px;"><div style="width:100%;"><img style="vertical-align:middle;" src="images/bg/i_Weather.gif" /> <label class="box-item" style="padding-right:4px;line-height:15px;">'+ dHanoi +'</label></div></td></tr>';
			
			vWeather += '<tr style="background-color:#facd5b;"><td style="height:25px;padding-left:3px;"><div style="width:70px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vHaiPhong +'</label></div></td>';
			vWeather += '<td style="height:15px;"><div><img style="vertical-align:middle;" src="images/bg/i_Weather.gif" /> <label class="box-item" style="padding-right:4px;line-height:15px;">'+ dHaiPhong +'</label></div></td></tr>';
			
			vWeather += '<tr style="background-color:#f3b928;"><td style="height:25px;padding-left:3px;"><div style="width:70px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vDaNang +'</label></div></td>';
			vWeather += '<td style="height:15px;"><div><img style="vertical-align:middle;" src="images/bg/i_Weather.gif" /> <label class="box-item" style="padding-right:4px;line-height:15px;">'+ dDaNang +'</label></div></td></tr>';
			
			vWeather += '<tr style="background-color:#facd5b;"><td style="height:25px;padding-left:3px;"><div style="width:70px;"><label class="box-item" style="padding-right:4px;line-height:15px;">'+ vHoChiMinh +'</label></div></td>';
			vWeather += '<td style="height:15px;"><div><img style="vertical-align:middle;" src="images/bg/i_Weather.gif" /> <label class="box-item" style="padding-right:4px;line-height:15px;">'+ dHoChiMinh +'</label></div></td></tr>';
			vWeather += '</table>';
			document.getElementById("eWeather").innerHTML = vWeather;
		}
		ShowWeatherPrice();

		function ShowForexRate()
		{
			var vForex;
			var j=0;
			vForex = '<div style="width:147px;background-color:#ffffff;border-left: 1px solid #a8a8a8;">';
			for(var i=0;i<vForexs.length;i++){
			    j++;
				if (typeof(vForexs[i]) !='undefined' && typeof(vCosts[i]) !='undefined'){
					vForex += '<div style="float:left;width:147px;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:147px;height:1px;font-size:1px;overflow:hidden;background-color:#a8a8a8;">&nbsp;</div>';
					}
				}
			}
			vForex += '</div>';
			document.getElementById("eForex").innerHTML = vForex;
		}
		ShowForexRate();
