function conversorUSD(precio) {var str = Xtend(0.761922114*precio,2)+' Euro
'+Xtend(0.632875511*precio,2)+' Pound
'+Xtend(3.0099999905*precio,2)+' Malaysia Ringgits
'+Xtend(30.1902*precio,2)+' Russia Rubbles
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorEUR(precio) {var str = Xtend(1.31247010898544*precio,2)+' Dollar
'+Xtend(0.830630190896389*precio,2)+' Pound
'+Xtend(3.95053501557772*precio,2)+' Malaysia Ringgits
'+Xtend(39.6237350842924*precio,2)+' Russia Rubbles
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+"€ approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorGBP(precio) {var str = Xtend(1.58008957941809*precio,2)+' Dollar
'+Xtend(1.2039051926596*precio,2)+' Euro
'+Xtend(4.75606961903761*precio,2)+' Malaysia Ringgits
'+Xtend(47.7032204205481*precio,2)+' Russia Rubbles
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorMYR(precio) {var str = Xtend(0.332225914669816*precio,2)+' Dollar
'+Xtend(0.25313027123081*precio,2)+' Euro
'+Xtend(0.210257645514102*precio,2)+' Pound
'+Xtend(10.0299668090647*precio,2)+' Russia Rubbles
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorRUB(precio) {var str = Xtend(0.0331233314121801*precio,2)+' Dollar
'+Xtend(0.0252373986922909*precio,2)+' Euro
'+Xtend(0.0209629452935058*precio,2)+' Pound
'+Xtend(0.0997012272359905*precio,2)+' Malaysia Ringgits
'+'';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;
}