function ShowGoldPrice()
{
	function AddGoldPrice(Currency, Rate)
	{
		document.writeln('<tr bgcolor="#ffffff"><td style="font-family:tahoma; font-size:11px; color:#000000;">&nbsp;', Currency, '</td><td style="font-family:tahoma; font-size:11px; color:#000000;" align=right>', Rate, '&nbsp;</td></tr>');
	}
	if (!AddForexHeader('Gold', 'Gold 9999 /VND', 3, PageHost.concat('Service/i_Stock.gif')))
		return;
	if (typeof(vGoldBuy) !='undefined') AddGoldPrice('Buy', vGoldBuy);
	if (typeof(vGoldSell)!='undefined') AddGoldPrice('Sell', vGoldSell);
	AddForexFooter();
}
ShowGoldPrice();


