function ShowForexRate()
{
	function AddCurrencyRate(Currency, Rate)
	{
		document.writeln('<tr><td class=fontNormal width="50%" >&nbsp;', Currency, '</td><td class=fontNormal align=center> ', Rate, '&nbsp;</td></tr>');
	}
	if (!AddForexHeader2('Forex', 'T&#7927; gi&#225;', 0, '/Service/i_Stock.gif'))
		return;
	if (typeof(vForexs[0]) !='undefined' && typeof(vCosts[0]) !='undefined') AddCurrencyRate(vForexs[0], vCosts[0]);
	if (typeof(vForexs[1]) !='undefined' && typeof(vCosts[1]) !='undefined') AddCurrencyRate(vForexs[1], vCosts[1]);
	if (typeof(vForexs[2]) !='undefined' && typeof(vCosts[2]) !='undefined') AddCurrencyRate(vForexs[2], vCosts[2]);
	if (typeof(vForexs[3]) !='undefined' && typeof(vCosts[3]) !='undefined') AddCurrencyRate(vForexs[3], vCosts[3]);
	if (typeof(vForexs[4]) !='undefined' && typeof(vCosts[4]) !='undefined') AddCurrencyRate(vForexs[4], vCosts[4]);
	if (typeof(vForexs[5]) !='undefined' && typeof(vCosts[5]) !='undefined') AddCurrencyRate(vForexs[5], vCosts[5]);
	AddForexFooter();
}
ShowForexRate();

