if(!WrsGroup){var WrsGroup={}}WrsGroup.Currency=function(a){this._form=a;this._curr=a.elements.currency};WrsGroup.Currency.prototype={removeDollar:function(){var a=this._curr.getElementsByTagName("option")[0];if(a.innerHTML.indexOf("US Dollars")>-1){this._curr.removeChild(a)}},trimSterling:function(){var b=this._curr.getElementsByTagName("option");for(var a=0;a<b.length;a++){if(b[a].innerHTML.indexOf("British Pound Sterling")>-1){b[a].innerHTML="British Pound";break}}},setChangeHandler:function(){var b=this._curr;var a=this._form;b.setAttribute("onsubmit","");b.onchange=function(){var g=b.options[b.selectedIndex].text;if(g.indexOf("US Dollars")>-1){return false}b.style.display="none";document.getElementById("currency-loading").style.display="block";var d;if(window.XMLHttpRequest){d=new XMLHttpRequest()}else{if(window.ActiveXObject){try{d=new ActiveXObject("Msxml2.XMLHTTP")}catch(f){d=new ActiveXObject("Microsoft.XMLHTTP")}}}var c="currency="+b.options[b.selectedIndex].value;d.open("POST",a.action,true);d.setRequestHeader("Content-type","application/x-www-form-urlencoded");d.send(c);d.onreadystatechange=function(){if(d.readyState==4){if(location.href.indexOf("simplesearch.do")>-1){location.href="/storefrontB2CWEB/"}else{location.reload()}}return true};return false}}};var form=document.forms.currencyForm;if(form&&form.elements.currency){var curr=new WrsGroup.Currency(form);curr.removeDollar();curr.trimSterling();curr.setChangeHandler()};