function ShowForexRate()
{
	function AddCurrencyRate(Currency, Rate)
	{
		document.writeln('<tr ><td class=other >', Currency, '</td><td class=other align=right  > ', Rate, '&nbsp;</td></tr>');
	}
	if (!AddForexHeader2('Forex', 'Tỷ giá', 3, 'Service/i_Stock.gif'))
		return;
		var i=1;
	for(i=0;i<=12;i++)
	{
	if (typeof(vForexs[i]) !='undefined' && typeof(vCosts[i]) !='undefined') AddCurrencyRate(vForexs[i], vCosts[i]);
	
	}
	AddForexFooter();
}
ShowForexRate();