Courses

Course NameTraining Provider*PriceStart DateEnd DateAction
Risk Assessor (RA) - Refresher
Aerosol Monitoring & Analysis, Inc.
Location: 1331 Ashton Road Suite A, Hanover, Maryland - 21076
Phone: (410) 684-3327
Email Address: [email protected]
 2026/05/062026/05/06
Abatement Worker - English (W2) - Initial
Aerosol Monitoring & Analysis, Inc.
Location: 1331 Ashton Road Suite A, Hanover, Maryland - 21076
Phone: (410) 684-3327
Email Address: [email protected]
 2026/05/072026/05/08
Abatement Worker - Spanish (W2) - Spanish - Initial
Aerosol Monitoring & Analysis, Inc.
Location: 1331 Ashton Road Suite A, Hanover, Maryland - 21076
Phone: (410) 684-3327
Email Address: [email protected]
 2026/05/082026/05/09
Removal and Demolition Supervisor (S2) - Initial
Aerosol Monitoring & Analysis, Inc.
Location: 1331 Ashton Road Suite A, Hanover, Maryland - 21076
Phone: (410) 684-3327
Email Address: [email protected]
 2026/05/112026/05/14
Inspector Technician (IT) - Refresher
Aerosol Monitoring & Analysis, Inc.
Location: 1331 Ashton Road Suite A, Hanover, Maryland - 21076
Phone: (410) 684-3327
Email Address: [email protected]
 2026/05/152026/05/15
Inspector Technician (IT) - Initial
Aerosol Monitoring & Analysis, Inc.
Location: 1331 Ashton Road Suite A, Hanover, Maryland - 21076
Phone: (410) 684-3327
Email Address: [email protected]
 2026/05/182026/05/20
Risk Assessor (RA) - Initial
Aerosol Monitoring & Analysis, Inc.
Location: 1331 Ashton Road Suite A, Hanover, Maryland - 21076
Phone: (410) 684-3327
Email Address: [email protected]
 2026/05/212026/05/22
Abatement Worker - Spanish (W2) - Spanish - Refresher
Aerosol Monitoring & Analysis, Inc.
Location: 1331 Ashton Road Suite A, Hanover, Maryland - 21076
Phone: (410) 684-3327
Email Address: [email protected]
 2026/05/302026/05/30
$('#example2').dataTable({ dom: 'Bfrtip', aLengthMenu: [ [10, 20, 50, 100, 200, -1], [10, 20, 50, 100, 200, "All"] ], aaSorting: [[2, 'asc']], buttons: [ 'pageLength', 'excel', 'print' ] }); // use value of search field to filter var $quicksearch = $('.quicksearch').keyup(debounce(function () { qsRegex = new RegExp($quicksearch.val(), 'gi'); $grid.isotope(); }, 200)); // debounce so filtering doesn't happen every millisecond function debounce(fn, threshold) { var timeout; threshold = threshold || 100; return function debounced() { clearTimeout(timeout); var args = arguments; var _this = this; function delayed() { fn.apply(_this, args); } timeout = setTimeout(delayed, threshold); }; } // filter functions var filterFns = { // show if number is greater than 50 numberGreaterThan50: function () { var number = $(this).find('.number').text(); return parseInt(number, 10) > 50; }, // show if name ends with -ium ium: function () { var name = $(this).find('.name').text(); return name.match(/ium$/); } }; // bind filter on radio button click $('.filters').on('click', 'input', function () { // get filter value from input value var filterValue = this.value; // use filterFn if matches value filterValue = filterFns[filterValue] || filterValue; $grid.isotope({ filter: filterValue }); });