function conversorTRY(precio) {var str = Xtend(0.36*precio,2)+' Pounds
'+Xtend(0.57*precio,2)+' American dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" TL approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorGBP(precio) {var str = Xtend(1.58333333333333*precio,2)+' American dolars
'+'';return overlib(str, CAPTION,"£" +Xtend(precio,2)+" GBP approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorUSD(precio) {var str = Xtend(0.631578947368421*precio,2)+' Pounds
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" USD approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorEUR(precio) {var str = Xtend(0.837209302325581*precio,2)+' Pounds
'+Xtend(1.32558139534884*precio,2)+' American dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" EUR approx conversion" , LEFT, ABOVE, OFFSETY ,10);}function conversorALL(precio) {var str = Xtend(0.00598469911925178*precio,2)+' Pounds
'+Xtend(0.00947577360548198*precio,2)+' American dolars
'+'';return overlib(str, CAPTION,"" +Xtend(precio,2)+" ALL 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;
}