function ToUrl(m){window.open(m);}

var selectRef=function(){
	var b,t;
	return{
		init:function(b,t){
			var bul,bli,blilen,blist,blistoption,blistvalue,bsel,bulbyid,ultosel,bopt,blia,i;
			bul=document.getElementById(b);
			bli=bul.getElementsByTagName('li');
			blilen = bli.length;
			var txt="<select id='new_" + b +"' onchange=\"window.location = document.getElementById('new_" + b +"').value\">"
			//bsel = document.createElement("select");
			bulbyid = document.getElementById(b);
			ultosel = bulbyid.parentNode;
			
			for(i=0;i<blilen;i++){
				situ = bli[i];
				blia = bli[i].getElementsByTagName('a');
				blistoption = blia[0].childNodes[0].nodeName;
			
				blistvalue = blia[0];
				txt+="<option value='" + blistvalue + "' " + blia[0].id + ">" + blia[0].childNodes[0].nodeValue +"</option>"				
			}
			txt+="</select>"
			document.getElementById(b).innerHTML = txt;
			//bsel.setAttribute("id", b);
			//bsel.setAttribute("onchange", "window.location = document.getElementById('" + b + "').options[document.getElementById('" + b + "').selectedIndex].value;");
			
		
		}
	}
}();