﻿function ShowForexRate()
{
	function AddCurrencyRate(Currency, Rate)
	{
		document.writeln('<tr><td bgColor=#ffffff class=tab>&nbsp;', Currency, '</td><td bgcolor=#Ffffff align=right class=tab>', Rate, '&nbsp;</td></tr>');
	}
//	if (!AddHeader('Forex', 'T&#7927; gi&#225;', 3, PageHost.concat('/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[10])!='undefined' && typeof(vCosts[10])!='undefined') AddCurrencyRate(vForexs[10], vCosts[10]);
//	//	AddFooter();
}
ShowForexRate();