function ToggleObj(id) {
	var o = $(id);
	if (o) {
		if (o.style.display=='none') {
			Effect.BlindDown(o)
		} else {
			Effect.BlindUp(o)
		}
	}
}