function ShowGoldPrice(){
 	var sHTML = '';
	sHTML = sHTML.concat('<span style="float:right;color:#8A0000;font:bold 10px arial;">ĐVT: tr.&#273;/ch&#7881;</span>');
	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" style="font-size:10px;width:46%;">Lo&#7841;i v&#224;ng</td>');
	sHTML = sHTML.concat(' <td class="td-weather-title" style="text-align:center;font-size:10px;width:27%;">Mua</td>');	
	sHTML = sHTML.concat(' <td class="td-weather-title" style="text-align:center;font-size:10px;width:27%;">B&#225;n</td>');
	sHTML = sHTML.concat(' </tr>');
 	sHTML = sHTML.concat(' <tr>');
	sHTML = sHTML.concat(' <td class="td-weather-title">SBJ</td>');
	sHTML = sHTML.concat(' <td class="td-weather-data txtr">').concat(vGoldSbjBuy).concat('</td>');
	sHTML = sHTML.concat(' <td class="td-weather-data txtr">').concat(vGoldSbjSell).concat('</td>');
	sHTML = sHTML.concat(' </tr>');
	sHTML = sHTML.concat(' <tr>');
	sHTML = sHTML.concat(' <td class="td-weather-title">SJC</td>');
 	sHTML = sHTML.concat(' <td class="td-weather-data txtr">').concat(vGoldSjcBuy).concat('</td>');
	sHTML = sHTML.concat(' <td class="td-weather-data txtr">').concat(vGoldSjcSell).concat('</td>');
	sHTML = sHTML.concat(' </tr>');
	sHTML = sHTML.concat('</table>');
	//document.getElementById("eGold").innerHTML = sHTML;
}
//ShowGoldPrice();
function ShowForexRate(){
	var sHTML = '';
 	sHTML = sHTML.concat('<table border="0px" cellpadding="2px" cellspacing="1px" class="forex-tbl">');
 	for(var i=0;i<vForexs.length;i++){
 		sHTML = sHTML.concat(' <tr>');
 		sHTML = sHTML.concat(' <td class="forex-title">').concat(vForexs[i]).concat('</td>');
 		sHTML = sHTML.concat(' <td class="forex-data">').concat(vCosts[i]).concat('</td>');
 		sHTML = sHTML.concat(' </tr>');
 	}
 	sHTML = sHTML.concat('</table>');
 	document.getElementById("eForex").innerHTML = sHTML;
}
ShowForexRate(); 
