// JavaScript Document

function hide_dlg(id) {
	document.getElementById(id).style.display = "none";
}
function show_dlg(id) {
	document.getElementById(id).style.display = "block";
}

