function showthing(txt,underthis) {
	var width=180;
	var s=document.getElementById('showtext');
	s.innerHTML=txt;
	s.style.position='absolute';
	s.style.width=width;
	s.style.textAlign='center';
	var l=realoffsetLeft(underthis)+((underthis.offsetWidth-width)/2);
	if (l<200) {
		l=200;
		s.style.textAlign='left';
	}
	if ((l+width)>800) {
		l=800-width;
		s.textAlign='right';
	}
	s.style.left=l;
}

function realoffsetLeft(obj) {
	if (obj.offsetParent) {
		return obj.offsetLeft+realoffsetLeft(obj.offsetParent);
	} else {
		return obj.offsetLeft;
	}
}

function popup(url) {
	return window.open(url,"_blank","height=550,width=750,resizable=yes,scrollbars=yes,top=10,left=10");
}
