function ShowGoldPrice()
{
	function AddGoldPrice(Currency, Rate)
	{
		document.writeln('<tr><td class="text_normal" style="color:#000000;border-bottom: 0px #F3F3F3 dotted; padding: 2px;">&nbsp;', Currency, '</td><td class="text_normal" align=right style="border-bottom: 0px #F3F3F3 dotted; padding: 2px;">', Rate, '&nbsp;</td></tr>');
	}
	if (!AddHeader('Gold', 'Gi&#225; v&#224;ng 9999', 3, PageHost.concat('packages/utils/skins/default/images/home/i_Stock.gif')))
		return;
	if (typeof(vGoldBuy) !='undefined') AddGoldPrice('Mua', vGoldBuy);
	if (typeof(vGoldSell)!='undefined') AddGoldPrice('B&#225;n', vGoldSell);
	document.writeln('<tr><td colspan=2 align="center" style="background:none;"></td></tr>');
	AddFooter();
}
ShowGoldPrice();