<!--
/***********************************************************************
*
* ACT_DropListBox -	returns a string containing the HTML for the SELECT listbox
*
************************************************************************/

function ACT_DropListBox(ar)
	{
	var strIDs = '<select size="1" name="ACT_droplstbox" onChange="if(options[selectedIndex].value) window.location.href=(options[selectedIndex].value)">'
  	var sel = " SELECTED"
  	strIDs += '<option ' + sel + ' value="">Select a Section</option>'
  	for (var i=1;i<=ar.length;i++)
  		{
		if (ar[i].sURL !=null)
			{
			strIDs += '<option value="' + ar[i].sURL +  '&NOCLEARFRAMES=1">' + ar[i].sName + '</option>'
			}
  		}
	strIDs+='</select>'
  	return strIDs
  	}
//-->