<!--
function open_small_window(url, title, options) {
  window.open(url, title, options);
}

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
	// loop through the collection
	for (i = 0; i < document.forms.length ; i++) {
		if(document.forms[i].className=='autonav') {
			cur_select = document.forms[i].getElementsByTagName("select")[0]
			if(cur_select) {
				if(cur_select.length==1){
					cur_select.parentNode.removeChild(cur_select);	
				}
		
				cur_select.onfocus = function() {
					var me = this;
					if(me.options[0].value=="") {
						 me.options[0] = null;
					}
				}
				cur_select.onchange = function(){
					var me = this;
					var myindex = me.selectedIndex;
					if (myindex >= 0) {
						location = me.options[myindex].value;
					}
				}
			}
		}
	}
});


function blurLink() {
//nothing
}
// -->