function conversorEUR(precio) {var str = Xtend(0.829662646611269*precio,2)+' £ Sterling pounds
'+Xtend(1.31187273195604*precio,2)+' $ Dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+"€ approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorGBP(precio) {var str = Xtend(1.20530917486097*precio,2)+' Euro
'+Xtend(1.58121224007654*precio,2)+' $ Dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorUSD(precio) {var str = Xtend(0.7622690644*precio,2)+' Euro
'+Xtend(0.6324261694*precio,2)+' £ Sterling pounds
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" approx conversion" , LEFT, ABOVE, OFFSETY ,10);} function Xtend(Q, N) { var P; Q = String(Q) ; if (/e/i.test(Q)) { return Q;}; while ((P=Q.indexOf('.'))<0) Q+='.'; while (Q.length <= P+N) Q+='0'; if (Q.length-N > P) Q=Q.substring(0,P+N+1); return Q; }