// JavaScript Document
<!--
/***********************************************************************
*
* ACT_DropListBox -	returns a string containing the HTML for the SELECT listbox
*
************************************************************************/

function ACT_DropListBox(ar)
	{
	var strIDs = '<SELECT SIZE="1" NAME="ACT_droplstbox" onClick="if(options[selectedIndex].value) window.location.href=(options[selectedIndex].value)">'
  	var sel = " SELECTED"
  	strIDs += '<OPTION ' + sel + ' VALUE="">Select a Department:</OPTION>'
  	for (var i=1;i<=ar.length;i++)
  		{
		if (ar[i].sURL !=null)
			{
			strIDs += '<OPTION VALUE="' + ar[i].sURL + '">' + ar[i].sName + '</OPTION>'
			}
  		}
	strIDs+='</SELECT>'
  	return strIDs
  	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
