// Put the Exchange rates here, updated each quarter

// Remember to update exchanges.htm too, which links to the excel pricelist


var pounds = 1.000;
var euros = 1.16612;
var usdollars = 1.57147;
var cdndollars = 1.6077;


// This makes up the currency selection box which appears in the pricing tools
var exchangerates="<option value="+pounds+">GB&pound;&nbsp;</option>     <option value="+euros+">Euros&nbsp;</option>        <option value="+usdollars+">US $&nbsp;</option>       <option value="+cdndollars+">Canadian $&nbsp;</option>";
document.write(exchangerates);
