/*
function ShowWeather(){
    var sHTML = '';
    sHTML = sHTML.concat('<table border="0px" cellpadding="2px" cellspacing="1px" class="tbl-weather">');
	sHTML = sHTML.concat('<tr><td class="td-weather-title">&nbsp;' + vHanoi + '</td><td class="td-weather-data txtr">&nbsp;' + dHanoi + '&nbsp;&deg;C</td></tr>');
	sHTML = sHTML.concat('<tr><td class="td-weather-title">&nbsp;' + vHaiPhong + '</td><td class="td-weather-data txtr">&nbsp;' + dHaiPhong + '&nbsp;&deg;C</td></tr>');
	sHTML = sHTML.concat('<tr><td class="td-weather-title">&nbsp;' + vDaNang + '</td><td class="td-weather-data txtr">&nbsp;' + dDaNang + '&nbsp;&deg;C</td></tr>');
	sHTML = sHTML.concat('<tr><td class="td-weather-title">&nbsp;' + vHoChiMinh + '</td><td class="td-weather-data txtr">&nbsp;' + dHoChiMinh + '&nbsp;&deg;C</td></tr>');
    sHTML = sHTML.concat('</table>');
	document.getElementById('eWeather').innerHTML=sHTML;
}
*/
function ShowGoldPrice(){
    var sHTML = '';
    sHTML = sHTML.concat('<table border="0px" cellpadding="2px" cellspacing="1px" class="tbl-goldprice">');
    sHTML = sHTML.concat('	<tr>');
    sHTML = sHTML.concat('		<td class="td-weather-title">Mua v&#224;o</td>');
    sHTML = sHTML.concat('		<td class="td-weather-data txtr"><b>').concat(vGoldBuy).concat('</b> vnd</td>');
    sHTML = sHTML.concat('	</tr>');
    sHTML = sHTML.concat('	<tr>');
    sHTML = sHTML.concat('		<td class="td-weather-title">B&#225;n ra</td>');
    sHTML = sHTML.concat('		<td class="td-weather-data txtr"><b>').concat(vGoldSell).concat('</b> vnd</td>');
    sHTML = sHTML.concat('	</tr>');
    sHTML = sHTML.concat('</table>');
	document.getElementById("eGold").innerHTML=sHTML;
}
function ShowForexRate(){
    var sHTML = '';
    sHTML = sHTML.concat('<table border="0px" cellpadding="2px" cellspacing="1px" class="tbl-weather">');
    for(var i=0;i<vForexs.length;i++){
        sHTML = sHTML.concat('	<tr>');
        sHTML = sHTML.concat('		<td class="td-weather-title">').concat(vForexs[i]).concat('</td>');
        sHTML = sHTML.concat('		<td class="td-weather-data txtr"><b>').concat(vCosts[i]).concat('</b> vnd</td>');
        sHTML = sHTML.concat('	</tr>');
    }
    sHTML = sHTML.concat('</table>');
	document.getElementById("eForex").innerHTML=sHTML;
}
