$(document).ready(function(){$("p#currency").hide()});function getCurrencyConverter(j,g,f,h,i){if(i=="wasNow"){if($("p#currency span.wasPrice").length==0){$("p#currency").append("<span class='wasPrice'>was: &nbsp;<span></span><br/>").append("<span class='nowPrice'>now: <span></span>");url1="/pws/ConvertCurrency.ice?value="+j+"&fromCurrency="+f+"&toCurrency="+h;$("p#currency span.wasPrice span").load(url1,function(){});url2="/pws/ConvertCurrency.ice?value="+g+"&fromCurrency="+f+"&toCurrency="+h;$("p#currency span.nowPrice span").load(url2,function(){$("p#currency").show()})}}else{if(i=="fromTo"){if($("p#currency span.fromPrice").length==0){$("p#currency").append("<span class='fromPrice'>from: <span></span><br/>").append("<span class='toPrice'>to: <span></span>");url1="/pws/ConvertCurrency.ice?value="+j+"&fromCurrency="+f+"&toCurrency="+h;$("p#currency span.fromPrice").load(url1,function(){});url2="/pws/ConvertCurrency.ice?value="+g+"&fromCurrency="+f+"&toCurrency="+h;$("p#currency span.toPrice").load(url2,function(){});$("p#currency").show()}}else{if($("p#currency span.onePrice").length==0){$("p#currency").append("<span class='onePrice'/>");url1="/pws/ConvertCurrency.ice?value="+j+"&fromCurrency="+f+"&toCurrency="+h;$("p#currency span.onePrice").load(url1,function(){});$("p#currency").show()}}}return false};