var where = ""; 
var IEadjustX = -13;
var IEadjustY = -18;
function getCoords(e) {
	if (isNav4) {
		xCoord = e.x;
		yCoord = e.y;
	} else if (isIE) {
		xCoord = event.clientX + IEadjustX;
		yCoord = event.clientY + IEadjustY;
	} else if (isGecko) {
		xCoord = e.clientX;
		yCoord = e.clientY;
	}
	coords.write("X= "+ xCoord + "  Y= " + yCoord); 
}
function makeAE(name, contents, container) {
	newElem = document.createElement(name);
	newElem.innerHTML = contents;
	newElem.id=name;
	newElem.style.position = 'absolute';
	container.appendChild(newElem);
	return new ActiveElement(name);
}