function showPop(id) {
	e = xGetElementById(id);
	if (e) {
		xShow(e);
	}
}
function hidePop(id) {
	e = xGetElementById(id);
	if (e) {
		xHide(e);
	}
}