var timerid = new Array();
var lastidt = -1;
function stopTimer(idt) {
	clearTimeout(timerid);
}
function enableTimer(idt) {
	d = document.getElementById(idt);
	timerid = setTimeout("d.style.display = 'none'", 100);
}
function show_popup(idt) {
	if ( (lastidt != -1) && (idt != lastidt) ) {
		document.getElementById(lastidt).style.display = 'none';
	}
	d = document.getElementById(idt);
	d.style.display = 'block';
	lastidt = idt;
}
