function ShowForexRate()
{
	function AddCurrencyRate(Currency, Rate)
	{	    
	    document.writeln('<tr ><td style="height:22px;width:90px;  text-align:left; padding-left:0px;"> 1$ = ', Rate, ' vnd</td><td></td></tr>');
	}
	if (!AddHeader('Forex', '', 0, PageHost.concat('')))
		return;
	if (typeof(vForexs[0])	!='undefined' && typeof(vCosts[0])!='undefined') AddCurrencyRate(vForexs[0], vCosts[0]);	
	
	AddFooter();
}
ShowForexRate();