function handleError (err, url, line) {
	if (err.indexOf('bject') != -1) {
		return true; // error is handled
	} else {
		return false; // let the browser handle the error
	}
}
window.onerror = handleError;

var cellHeight = 20;
var leadingCharacter = '';
var submenuCharacter = '&nbsp;&nbsp;&nbsp;»';
var id = 1;

No3 = (parseInt(navigator.appVersion) > 3) ? 1:0;
var timer;

//Get the img X and Y positions with an onMouseOver event
function getDim(el){
	for (var lx=0,ly=0;el!=null;
		lx+=el.offsetLeft,ly+=el.offsetTop,el=el.offsetParent);
	return {x:lx,y:ly}
}
