function conversorEUR(precio) {var str = Xtend(0.833616996004192*precio,2)+' £ Sterling pounds
'+Xtend(1.32486860508295*precio,2)+' $ Dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+"€ approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorGBP(precio) {var str = Xtend(1.19959166474933*precio,2)+' Euro
'+Xtend(1.58930133554557*precio,2)+' $ Dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorUSD(precio) {var str = Xtend(0.7547918308*precio,2)+' Euro
'+Xtend(0.6292072986*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;
}