DropDown=function(a,b,d){if(YAHOO.env.ua.ie==0){this.DOM=document.createElement("select");for(i in b){c=document.createElement("option");c.value=b[i].img;ind=parseInt(i)+1;if(b[i].sig.replace(/\s/g,"").length>0){ind=ind+" ("+b[i].sig+")";}c.appendChild(document.createTextNode(ind));this.DOM.appendChild(c);}}else{this.DOM=document.createElement("select");var c=null;for(i in b){c=document.createElement("option");c.value=b[i].img;ind=parseInt(i)+1;if(b[i].sig.replace(/\s/g,"").length>0){ind=ind+" ("+b[i].sig+")";}c.appendChild(document.createTextNode(ind));this.DOM.appendChild(c);}}this.DOM.selectedIndex=d;this.dropDownChanged=new YAHOO.util.CustomEvent("dropDownChanged");YAHOO.util.Event.addListener(this.DOM,"change",this.updatePage,this);YAHOO.util.Event.addListener(this.DOM,"mousedown",function(g,f){YAHOO.util.Event.stopPropagation(g);},this);a.appendChild(this.DOM);};DropDown.prototype.updatePage=function(b,a){a.dropDownChanged.fire(a.DOM.selectedIndex);};