function ShowGoldPrice()
{
	function AddGoldPrice(Currency, Rate)
	{
		document.writeln('<tr style="background-color:#edd7fe;Height:20px;Width:177px;"><td class=BoxItem>&nbsp;', Currency, '</td><td class=BoxItem align=right>', Rate, '&nbsp;</td></tr>');
	}
	if (!AddHeader('Gold', 'Gi&#225; v&#224;ng', 3, PageHost.concat('incControls/Gold_Rate/js/gold.gif')))
		return;
	if (typeof(vGoldBuy) !='undefined') AddGoldPrice('Mua', vGoldBuy);
	if (typeof(vGoldSell)!='undefined') AddGoldPrice('B&#225;n', vGoldSell);
	AddFooter();
}
ShowGoldPrice();