function getElement (elId) {
	return	document.all ? document.all[elId] :
			document.getElementById ? document.getElementById(elId) :
			null;
}
function show(el) {
	if (typeof el == "String" || typeof el == "string") el = getElement(el);
	el.style.display = '';
}
function hide(el) {
	if (typeof el == "String" || typeof el == "string") el = getElement(el);
	el.style.display = 'none';
}
function getPos(el) {
	for (var lx=0, ly=0;
	     el != null;
		 lx += el.offsetLeft, ly += el.offsetTop, el = el.offsetParent);
	return {x: lx,y: ly};
}