rates = new Array (1);

//rates last updated on 16.11.2008
rates [0] = 1.14995 //GBP to EUR
rates [1] = 2.54044 //GBP to YTL

function getRate(ccy) 
	{
	switch (ccy)
		{			
		case 'EUR':
			return rates [0]
			break;
			
		case 'YTL':
			return rates [1]
			break;
			
		default:
			return;
		}
}

function getRateDate() 
    {
        return ('16.Mar.2011');
    } 
