var slotprice="",currencyrate=1,curcurrency="EUR";var currency=new Array();currency['EUR']="&euro;";currency['USD']="&#36;";currency['JPY']="&#165;";currency['BGN']="&#1083;&#1074;";currency['CZK']="&#75;&#269;";currency['DKK']="&#107;&#114;";currency['GBP']="&#163;";currency['HUF']="&#70;&#116;";currency['LTL']="&#76;&#116;";currency['LVL']="&#76;&#115;";currency['PLN']="&#122;&#322;";currency['RON']="&#108;&#101;&#105;";currency['SEK']="&#107;&#114;";currency['CHF']="&#67;&#72;&#70;";currency['NOK']="&#107;&#114;";currency['HRK']="&#107;&#110;";currency['RUB']="&#1088;&#1091;&#1073;";currency['TRY']="&#84;&#76;";currency['AUD']="&#36;";currency['BRL']="&#82;&#36;";currency['CAD']="&#36;";currency['CNY']="&#165;";currency['HKD']="&#36;";currency['IDR']="&#82;&#112;";currency['ILS']="&#8362;";currency['INR']="";currency['KRW']="&#8361;";currency['MXN']="&#36;";currency['MYR']="&#82;&#77;";currency['NZD']="&#36;";currency['PHP']="&#8369;";currency['PKR']="R";currency['SGD']="&#36;";currency['THB']="&#3647;";currency['ZAR']="&#82;";function correctprice(price){var str=price+'';var sep=str.indexOf(".");var ex=str.split(".");if(sep>0){if(ex[1].length==1){price=price+'0';}}else{price=price+'.00';}return price;}
function setSlotPrice(price){slotprice=parseFloat(price);}
function getprice(){var price=0;price=(slotprice*document.getElementById('data').slots.value)*document.getElementById('data').term.value;return price;}
function calculate(){var price=(getprice()*currencyrate);price=roundNumber(price,2);document.getElementById("price").innerHTML=correctprice(price);document.getElementById("pricesign").innerHTML=currency[curcurrency];}
function roundNumber(num,dec){var result=Math.round(num*Math.pow(10,dec))/Math.pow(10,dec);return result;}
function UpdatePrice(cur){$.get('getCurrency.php?cur='+cur,function(data){currencyrate=parseFloat(data);curcurrency=cur;calculate();});}
function SetCurrency(index){curcurrency=index;UpdatePrice(index);}
