function showPressPop(id) {
	e = xGetElementById(id);
	if (e) {
		xShow(e);
	}
}
function hidePressPop(id) {
	e = xGetElementById(id);
	if (e) {
		xHide(e);
	}
}