function conversorEUR(precio) {var str = Xtend(0.837497742435371*precio,2)+' £ Sterling pounds
'+Xtend(1.30679186948964*precio,2)+' $ Dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+"€ Angenäherter Umtauschkurs" , LEFT, ABOVE, OFFSETY ,10);}function conversorGBP(precio) {var str = Xtend(1.19403306938128*precio,2)+' Euro
'+Xtend(1.56035270696922*precio,2)+' $ Dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" Angenäherter Umtauschkurs" , LEFT, ABOVE, OFFSETY ,10);}function conversorUSD(precio) {var str = Xtend(0.765232799*precio,2)+' Euro
'+Xtend(0.6408807416*precio,2)+' £ Sterling pounds
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" Angenäherter Umtauschkurs" , 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;
}