|
|
Illinois Professional Development Series (PDS)
Individuals enter the emergency management field with a variety of backgrounds
and training which are often unrelated to the wide range of responsibilities to
be fulfilled by today's emergency management personnel. Thus, seven courses,
the Professional Development Series (PDS), presenting a variety of subjects
pertinent to the emergency management field, are offered to supplement and
complement the knowledge and skills of new personnel. The seven courses are:
-
Decision Making and Problem Solving*
-
Developing Volunteer Resources
-
Effective Communication
-
Emergency Planning
-
Homeland Security Exercise and Evaluation program (HSEEP)**
-
Principles of Emergency Management
-
Leadership and Influence
* Decision Making in a Crisis may be substituted
** Exercise Design has been replaced by HSEEP
These courses may be taken in any order over an unspecified time. Persons completing the on-line courses thru the FEMA Independent Study Program will be awarded a FEMA Certificate of Achievement. This certificate will be signed by the Superintendent of FEMA's Emergency Management Institute. Persons completing both the online and classroom portion will be awarded the Illinois Professional Development Series certificate. This certificate, signed by the Governor of Illinois and the IEMA Director, will be awarded at the annual IEMA Conference. The Illinois Professional Development Series certificate is a requirement for those applying for the Illinois Professional Emergency Manager Program.
If you want to learn more about the Training Program or are interested in
attending a specific course, please contact the IEMA Regional Coordinator
serving your county. Registration must be made in advance to attend any course.
To check the status of your Illinois PDS, log on to our online registration and check your transcript.
|
|
<%
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 = " |