//call CFM file to log JS errors
function errAlert(msg, errUrl, line) {
	errImage = new Image();
	errImage.src = '/scripts/error-handling/js-error-logger.cfm?JSURL=' + escape(errUrl) + '&MSG=' + escape(msg) + '&LINE=' + line;
	return true;
}
window.onerror = errAlert;


//doing a javascript check
jsCheckImage = new Image();
jsCheckImage.src = '/scripts/error-handling/js-check.cfm';
