// JScript source code
var cTimer = 0;				// timer for cursor stop
var cX, cY;

function findLivePageWidth() {
	if (window.innerWidth != null) return window.innerWidth;
	if (document.body.clientWidth != null) return document.body.clientWidth;
	return (null);
}

// pops up text at evt location
//		(requires findDOM.js)
function popUp(evt, objectID) {	
	if (isDHTML) {
		if (evt.x) {
			showMaptip(evt.x, evt.y, objectID)
		} else if (evt.pageX) {
			showMaptip(evt.pageX, evt.pageY, object)
		}
	}
}






