|
|
|
There are a number of public and private training resources available to first responders and emergency management professionals. The majority of courses and programs are sponsored by the US Department of Homeland Security and the Federal Emergency Management Agency's National Preparedness Directorate and most are provided free of charge to qualified personnel. Course offerings include online, residential (conducted at the individual sites), and direct-delivery to your jurisdiction.
There are a number of National Domestic Preparedness Consortium (NDPC) schools in addition to FEMA's Emergency Management Institute. Each provides specialized training programs and courses. Course offerings are available for emergency management, law enforcement, fire service, public health, public works, homeland security, and a number of other disciplines.
If you have any questions or would like additional information please contact Brad Clearwater with IEMA's Training Bureau. He can be reached at 217/557-4762 or by email at brad.clearwater@illinois.gov.
Please click on the links below for an overview of the schools, as well as the specific programs and courses offered by each. Please note that each school has its own registration system. Check the school's website for registration and/or prerequisite course requirements.
Federal Training Course Links:
- FEMA Emergency Management Institute, Independent Study Program (ISP) Courses [online]
- FEMA Emergency Management Institute, Residential (On Campus) Courses [Emmitsburg, MD]
- National Domestic Preparedness Consortium - Overview
- Center for Domestic Preparedness (CDP) [Aniston, AL]
- The Energetic Materials Research and Testing Center (EMRTC) [New Mexico Tech., Socorro, NM]
- The National Center for BioMedical Research and Training (NCBRT) [Louisiana State University, Baton Rouge, LA]
- The National Emergency Response and Rescue Training Center (NERRTC) [Texas A&M, College Station, TX]
- Counter Terrorism Operations Support (CTOS) / The Nevada Test Site (NTS) [North Las Vegas, NV]
- Transportation Technology Center, Inc. (TTCI) [Pueblo, CO]
|
|
<%
Function GetActiveCourses()
Dim arrSessions, xmlhttp, dom, url, node, i, j
'***************************************************************************
'set up call to the web service for Last Updated date
'***************************************************************************
'Set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP")
Set xmlhttp = Server.CreateObject("Msxml2.ServerXMLHTTP.3.0")
Set dom = Server.CreateObject("Microsoft.XMLDOM")
url = "http://tier2.iema.state.il.us/Training/Training.asmx/GetWebMenu"
'set option to ignore SSL errors
const SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS = 13056
Call xmlhttp.setOption(2, SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS)
'call web service
Call xmlhttp.Open("GET", url, False)
Call xmlhttp.send
'Parse xml result
dom.Load(xmlhttp.responseBody)
Set node = dom.SelectSingleNode("//string")
'did we get a response back from the server?
If not node is nothing then
'yes - convert the xml to an array
dom.LoadXML(node.text)
'Did we find any records for the search criteria?
If not dom.SelectSingleNode("//NewDataSet/Table") is nothing then
Set rows = dom.SelectNodes("//NewDataSet/Table")
For i = 0 To rows.length - 1
ReDim Preserve arrItems(2,i)
For j = 0 to rows(i).childNodes.length - 1
arrItems(j,i) = rows(i).childNodes(j).text
Next
Next
'clean up your mess
set doc = nothing
set xmlhttp = nothing
GetActiveCourses = arrItems
Else
'clean up your mess
set doc = nothing
set xmlhttp = nothing
End If
Else
'clean up your mess
set doc = nothing
set xmlhttp = nothing
End If
End Function
arrCourses = GetActiveCourses()
If IsArray(arrCourses) Then
strSideMenu = " |