function conversorMXN(precio) {var str = Xtend(0.0759878419452888*precio,2)+' Dolares Mexicanos
'+Xtend(0.0581483889817629*precio,2)+' Euro
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" cambio aproximado" , LEFT, ABOVE, OFFSETY ,10);}function conversorUSD(precio) {var str = Xtend(13.16*precio,2)+' Peso Mexicano
'+Xtend(0.765232799*precio,2)+' Euro
'+'';return overlib(str, CAPTION,"$" +Xtend(precio,2)+" cambio aproximado" , LEFT, ABOVE, OFFSETY ,10);}function conversorEUR(precio) {var str = Xtend(17.1973810024837*precio,2)+' Peso Mexicano
'+Xtend(1.30679186948964*precio,2)+' Dolares Mexicanos
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" cambio aproximado" , 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; }