function fDOM(obj) {
	if (document.getElementById) return (document.getElementById(obj));
	else return (0);
}
function dropdown(obj,stat) {
	idx=fDOM(obj);
	if (idx) idx.style.visibility=(stat) ? "visible" : "hidden";
}
