function conversorEUR(precio) {var str = Xtend(0.906169926354554*precio,2)+' UK Pounds
'+Xtend(1.36058188599821*precio,2)+' US Dollars
'+'';return overlib(str, CAPTION,""+Xtend(precio,2)+" approx conversion" , LEFT, BELOW, OFFSETY ,10);}function conversorGBP(precio) {var str = Xtend(1.10354578199579*precio,2)+' Euros
'+Xtend(1.5014644013532*precio,2)+' US Dollars
'+'';return overlib(str, CAPTION,""+Xtend(precio,2)+" approx conversion" , LEFT, BELOW, OFFSETY ,10);}function conversorUSD(precio) {var str = Xtend(0.734979651199998*precio,2)+' Euros
'+Xtend(0.666016456399998*precio,2)+' UK Pounds
'+'';return overlib(str, CAPTION,""+Xtend(precio,2)+" approx conversion" , LEFT, BELOW, 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;
}