Safety Training
The Association of Water Technologies (AWT) has partnered with The Marcom Group, Ltd. to provide professionals in the water treatment industry online safety training courses. The program allows you to train, test, and track the safety training of you and/or your employees. There are hundreds of courses to choose from and the system offers you easy reporting tools to monitor training progress.
[m]$.dspThemeInclude(‘/display_objects/safetyTrainingCourses_recommended.cfm’)[/m]
[m]$.dspThemeInclude(‘/display_objects/safetyTrainingCourses_additional.cfm’)[/m]
Course Quantity | Member Rate | Nonmember Rate |
---|---|---|
Individual Course Price | $9.50/course | $17.50/course |
Bulk Pricing* (10 – 99 course accesses) | $9.00/course | $17.00/course |
Bulk Pricing* (100 – 249 courses accesses) | $8.50/course | $16.00/course |
Bulk Pricing* (250 – 999 courses accesses) | $8.00/course | $15.00/course |
Bulk Pricing* (1,000+ courses accesses) | $7.50/course | $14.00/course |
*Bulk Pricing can be used for any combination of safety course purchases. It is not limited to the multiple purchase of a single course. |
Course Registration
To register for this course, contact Angela Pike at (240) 404-6477 or apike@awt.org.
Continuing Education Units (CEUs) for Current CWTs
Certified Water Technologists (CWTs) need 25 CEUs every five years to recertify. Each online course qualifies for 1 CEU.
How it Works
Signing Up for a Course
To register for a course(s), contact Angela Pike at (240) 404-6477 or apike@awt.org. Within 48 hours of your registration, AWT staff will contact you with your login information.
If you have any questions about the courses, please contact Angela Pike at apike@awt.org or (240) 404-6477.
Starting a Course
Moving Through a Course
Audio and Speakers
Interactivity
The “Post-Test”
When calling to register for a course, having the this form filled out & available will help expedite the process.
$(document).ready(function(){
$('a.toggler').click(function(e){
e.preventDefault();
//$(this).children('span').toggleClass('glyphicon-zoom-in').toggleClass('glyphicon-zoom-out'); $(this).parents('.panel').find('.pcontent').toggleClass('hidden');
});
$('#myModal').on('show.bs.modal', function (event) {
var caller = $(event.relatedTarget); // event that triggered the modal var courseID = caller.data('courseId'); // Extract info from data-* attributes var modal = $(this); //model object for future access
// If necessary, you could initiate an AJAX request here (and then do the updating in a callback). // Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead. $.getJSON( "[m]$.siteConfig('themeAssetPath')[/m]/remote/safetyCourseDetail.cfm", { id: courseID } ) .done(function( json ) { //console.log( json );
modal.find('.modal-title').text(json.COURSENAME); modal.find('.mycourseid').text(json.COURSEID); modal.find('.mycourselength').text(json.COURSELENGTH); modal.find('.mycoursedesc').text(json.COURSEDESCRIPTION); modal.find('.mycourselang').text(json.COURSELANGUAGES); if(json.COURSEREGULATIONS.length){ //var regs = '
- ';
//var x = json.COURSEREGULATIONS.split(',');
//for(i in x ){
// regs += '
- ' + x[i]+ '
'; //} //regs += '
'; //modal.find('.mycourseregs').html(regs); modal.find('.mycourseregs').text(json.COURSEREGULATIONS); $('div.regrow').show(); } else{ modal.find('.mycourseregs').text(''); $('div.regrow').hide(); }
if(json.COURSEDEMO.length){ modal.find('.mycoursedemo').prop('href',json.COURSEDEMO); $('div.demorow').show(); } else{ modal.find('.mycoursedemo').prop('href',''); $('div.demorow').hide(); }
}) .fail(function( jqxhr, textStatus, error ) { var err = textStatus + ", " + error; console.log( "Request Failed: " + err ); event.preventDefault();
});
});
});