function MapRegionSelector(D,C,A){this.field=D;this.handler=C;if(!D){return }addSelectOption("","(Select Country)",D);var E=CountrySelector.prototype.countries;for(var B=0;B<E.length;B+=6){addSelectOption(E[B+4],E[B+5],D)}if(!A){var E=MapRegionSelector.prototype.regions;for(var B=0;B<E.length;B+=6){addSelectOption(E[B+4],E[B+5],D)}}YAHOO.util.Event.addListener(D,"change",this.countrySelected,this,true)}function addSelectOption(C,D,A){var B=document.createElement("OPTION");A.appendChild(B);B.innerHTML=D;B.setAttribute("value",C)}MapRegionSelector.prototype.countrySelected=function(){if(this.handler){this.handler()}};MapRegionSelector.prototype.getValue=function(){return this.field.value};MapRegionSelector.prototype.setFieldValue=function(A){this.field.value=A};MapRegionSelector.prototype.setValue=function(A){this.setFieldValue(A);this.countrySelected()};MapRegionSelector.prototype.getSelectedText=function(){if(this.field.selectedIndex>0){return this.field.options[this.field.selectedIndex].text}else{return""}};MapRegionSelector.lookup=function(C,A,E){var D=CountrySelector.lookup(C,A,E);if(D){return D}for(var B=0;B<MapRegionSelector.prototype.regions.length;B+=6){if(MapRegionSelector.prototype.regions[B+A]==C){return MapRegionSelector.prototype.regions[B+E]}}return null};MapRegionSelector.lookupInfo=function(B){var C=CountrySelector.lookupInfo(B);if(C){return C}for(var A=0;A<MapRegionSelector.prototype.regions.length;A+=6){if(MapRegionSelector.prototype.regions[A+4]==B){return MapRegionSelector.prototype.regions.slice(A,A+6)}}return null};MapRegionSelector.getIdUsingCode=function(A){return MapRegionSelector.lookup(A,4,0)};MapRegionSelector.getCodeUsingId=function(A){return MapRegionSelector.lookup(A,0,4)};MapRegionSelector.getCodeUsingName=function(A){return MapRegionSelector.lookup(A,5,4)};MapRegionSelector.getNameUsingCode=function(A){return MapRegionSelector.lookup(A,4,5)};MapRegionSelector.getNameUsingId=function(A){return MapRegionSelector.lookup(A,0,5)};MapRegionSelector.prototype.regions=new Array(664398,37.4023681556038,-3.89924476579711,0,"SP001","Canary Islands",659179,61.2890641311403,-150.266332309795,0,"US002","Alaska",659197,20.7530207692,-156.8919788356,5,"US011","Hawaii");
