how can I get this exchange rates from a web service using htm and javascript?

Dictionary Türkiye = Turkey | Dünya = World | Son güncellenme = Last updating date
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The european bank delivers a free daily exchange rates url for the most common currencies traded against the EURO. The format is XML.
http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml
You have to make a page on your server that will call the xml above parse it and return the values.
There is a PHP example of such page at:
http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html
The output of the example is text, but I guess sending a JSON instead would be easier to handle with javascript on the browser.