function goto(form)
{
	var index = form.select.selectedIndex;

	if (form.select.options[index].value != "0")
	{
		// Open in new window if separate page.
		if (form.select.options[index].value == "http://online.daytonastate.edu/" || form.select.options[index].value == "https://dbccapps.dbc.edu/cgi-bin/AdmApp/WebAdmApp_form.jsp" || form.select.options[index].value == "http://dbccapps3.daytonastate.edu/cgi-bin/WebSecLookup/sec_type.jsp")
		{
			window.open(form.select.options[index].value);
		}
		// Open in same window.
		else
		{
			location = form.select.options[index].value;
		}
	}
}

