function conversorEUR(precio) {var str = Xtend(0.792549491998149*precio,2)+' Sterling pounds
'+Xtend(1.57845710703743*precio,2)+' Dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+"€ approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorGBP(precio) {var str = Xtend(1.26175085606179*precio,2)+' Euro
'+Xtend(1.99161960606129*precio,2)+' Dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorUSD(precio) {var str = Xtend(0.633530043700001*precio,2)+' Euro
'+Xtend(0.502103914300001*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;
}