// JavaScript page methods for pctsWeb
// PAGE = thn.php

// declare a page namespace
var thn = {};

// --- namespace variables -------

// --- page functions -------


// --- attached events -------

// we attach inside an if statement because IE handles event listeners differently from other browsers.

if (window.attachEvent) {
	// attached events for IE
	// window.attachEvent("onload", ortracker.setIcons);
	
} else {
	// attached events for other browsers
	// window.addEventListener('load', ortracker.setIcons, false);

}