// 10/5/2010
EURO_DOLLAR=1.3038;
EURO_POUND=0.8738;

// Exchange rates 10/4/2010
// EURO_DOLLAR=1.3479;
// EURO_POUND=0.8769;

// // Exchange rates 2/3/2010
// EURO_DOLLAR=1.3538;
// EURO_POUND=0.9082;

// // Exchange rates 30/11/2009
// EURO_DOLLAR=1.5035;
// EURO_POUND=0.9118;

// // Exchange rates 22/6/2009
// EURO_DOLLAR=1.3858;
// EURO_POUND=0.8484;

DISCOUNT=1;
INFL=1.15;

INCLUDECHEAP=0;

function round(number)
{
    return parseInt(number + 0.5);
}

function discount(number)
{
    return round(number * DISCOUNT);
}

function currency_euro(number)
{
    document.write("&euro;" + number);
}    

function currency_euro_i(number)
{
    document.write("&euro;" + round(number * INFL));
}    

function currency_euro_d(number)
{
    document.write("&euro;" + discount(number * INFL));
}    

function currency(number)
{
    price = number;
    document.write("&euro;" + price + " (<small>approx: &pound;" + round(price * EURO_POUND) + " $" + round(price * EURO_DOLLAR) + "</small>)");
}

function currency_i(number)
{
    price = round(number * INFL);
    document.write("&euro;" + price + " (<small>approx: &pound;" + round(price * EURO_POUND) + " $" + round(price * EURO_DOLLAR) + "</small>)");
}

function currency_d(number)
{
    price = discount(number * INFL);
    document.write("&euro;" + price + " (<small>approx: &pound;" + round(price * EURO_POUND) + " $" + round(price * EURO_DOLLAR) + "</small>)");
}

function cheapbaskets()
{
    if(INCLUDECHEAP != 0) document.write("<a href=\"cheaperbaskets.html\" rel=\"nofollow\">Other suppliers / Cheaper baskets</a><br>");
}

function cheapbaskets_nl()
{
    if(INCLUDECHEAP != 0) document.write("<a href=\"nl_cheaperbaskets.html\" rel=\"nofollow\">Andere en goodkoeper manden</a><br>");
}
