rates = new Array (1);

//rates last updated on 16.11.2008
rates [0] = 1.172 //GBP to EUR
rates [1] = 2.411 //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.Nov.2008');
    } 