function showPrices()
{

    var exRate = 0.858418;
    var exDate = "13/08/2009";

    var varText = "Prices as of " 
      + exDate
      + " at Euro to Pound rate of "
      + exRate
      + " (1 euro = " 
      + exRate.toFixed(2)
      + "p)";

    var janEuro='280';
    var febEuro='280';
    var marEuro='280';
    var aprEuro='280';

    var mayEuro='390';
    var junEuro='390';

    var julEuro='550';
    var augEuro='550';

    var sepEuro='390';
    var octEuro='390';

    var novEuro='280';
    var decEuro='280';

    var janPound = janEuro * exRate;
    janPound = janPound.toFixed(0);

    var febPound = febEuro * exRate;
    febPound = febPound.toFixed(0);

    var marPound = marEuro * exRate;
    marPound = marPound.toFixed(0);

    var aprPound = aprEuro * exRate;
    aprPound = aprPound.toFixed(0);

    var mayPound = mayEuro * exRate;
    mayPound = mayPound.toFixed(0);

    var junPound = junEuro * exRate;
    junPound = junPound.toFixed(0);

    var julPound = julEuro * exRate;
    julPound = julPound.toFixed(0);

    var augPound = augEuro * exRate;
    augPound = augPound.toFixed(0);

    var sepPound = sepEuro * exRate;
    sepPound = sepPound.toFixed(0);

    var octPound = octEuro * exRate;
    octPound = octPound.toFixed(0);

    var novPound = novEuro * exRate;
    novPound = novPound.toFixed(0);

    var decPound = decEuro * exRate;
    decPound = decPound.toFixed(0);

    document.getElementById("priceExplain").innerText=varText;

    document.getElementById("JanEuro").innerText= janEuro;
    document.getElementById("FebEuro").innerText= febEuro;
    document.getElementById("MarEuro").innerText= marEuro;
    document.getElementById("AprEuro").innerText= aprEuro;

    document.getElementById("MayEuro").innerText= mayEuro;
    document.getElementById("JunEuro").innerText= junEuro;

    document.getElementById("JulEuro").innerText= julEuro;
    document.getElementById("AugEuro").innerText= augEuro;

    document.getElementById("SepEuro").innerText= sepEuro;
    document.getElementById("OctEuro").innerText= octEuro;

    document.getElementById("NovEuro").innerText= novEuro;
    document.getElementById("DecEuro").innerText= decEuro;

    document.getElementById("JanPound").innerText= janPound;
    document.getElementById("FebPound").innerText= febPound;
    document.getElementById("MarPound").innerText= marPound;
    document.getElementById("AprPound").innerText= aprPound;

    document.getElementById("MayPound").innerText= mayPound;
    document.getElementById("JunPound").innerText= junPound;

    document.getElementById("JulPound").innerText= julPound;
    document.getElementById("AugPound").innerText= augPound;

    document.getElementById("SepPound").innerText= sepPound;
    document.getElementById("OctPound").innerText= octPound;

    document.getElementById("NovPound").innerText= novPound;
    document.getElementById("DecPound").innerText= decPound;

}
