function Custom_Select(a){this.list_of_options_names=new Array();this.list_of_options_values=new Array();this.parent_div=a}Custom_Select.prototype.draw=function(){for(var b=0;b<this.list_of_options_names.length;b++){var c=document.createElement("div");this.parent_div.appendChild(c);c.id=this.list_of_options_values[b];var a=document.createTextNode("("+this.list_of_options_values[b]+") "+this.list_of_options_names[b]);c.appendChild(a);c.onclick=function(){var f=document.getElementById("result").childNodes;for(var d=0;d<f.length;d++){var e=f[d];if(e.tagName=="DIV"){e.className=""}}this.className="selected";evt_select_route_segments(this.id)};c.onmouseover=function(){this.style.backgroundColor="LightGrey"};c.onmouseout=function(){this.style.backgroundColor=""};c.style.cursor="pointer";c.style.paddingLeft="30px";c.style.textIndent="-30px"}};Custom_Select.prototype.add_option=function(a,b){this.list_of_options_names.push(a);this.list_of_options_values.push(b)};
