function ShowGoldPrice(){

	var sHTML = '';

	sHTML = sHTML.concat('<div style="text-align:right;color:#8A0000;font:bold 10px arial;">ĐVT: tr.&#273;/l&#432;&#7907;ng</div>');

	if(vGoldSbjBuy=='{0}' || vGoldSbjSell=='{1}' || vGoldSjcBuy =='{2}' || vGoldSjcSell=='{3}'){

		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="text-align:center;font-size:10px;width:35%;font-weight:bold">D&#7919; li&#7879;u &#273;ang &#273;&#432;&#7907;c c&#7853;p nh&#7853;t</td>');

		sHTML = sHTML.concat('	</tr>');

		sHTML = sHTML.concat('</table>');

	}

	else{

		sHTML = sHTML.concat('<table border="0px" cellpadding="2px" cellspacing="0px" class="tbl-goldprice">');

		sHTML = sHTML.concat('	<tr>');

		sHTML = sHTML.concat('		<td class="td-weather-title" style="font-size:10px;width:30%;">Lo&#7841;i</td>');

		sHTML = sHTML.concat('		<td class="td-weather-title" style="text-align:center;font-size:10px;width:35%;">Mua</td>');

		sHTML = sHTML.concat('		<td class="td-weather-title last" style="text-align:center;font-size:10px;width:35%;">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 last">').concat(vGoldSbjSell).concat('</td>');

		sHTML = sHTML.concat('	</tr>');

		sHTML = sHTML.concat('	<tr>');

		sHTML = sHTML.concat('		<td class="td-weather-title end">SJC</td>');

		sHTML = sHTML.concat('		<td class="td-weather-data end">').concat(vGoldSjcBuy).concat('</td>');

		sHTML = sHTML.concat('		<td class="td-weather-data last end">').concat(vGoldSjcSell).concat('</td>');

		sHTML = sHTML.concat('	</tr>');

		sHTML = sHTML.concat('</table>');

	}

	$('#eGold').html(sHTML);

}



function ShowForexRate(){

	var sHTML = '';

	sHTML = sHTML.concat('<table border="0px" cellpadding="2px" cellspacing="0px" 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 last">').concat(vCosts[i]).concat('</td>');

		sHTML = sHTML.concat('	</tr>');

	}

	sHTML = sHTML.concat('</table>');

	$('#eForex').html(sHTML);

}


