function showFilterBox(id,type) {
    document.getElementById(id).style.visibility = type ? "visible" : "hidden";
}

function textBoxStatus(box, value) {
	box.value = box.value == value ? '' : box.value;
}

