// JavaScript Document
function showMe(id) { // This gets executed when the user clicks on the checkbox
	var obj = document.getElementById(id);
if (obj.style.visibility=="hidden") { // if it is checked, make it visible, if not, hide it
	obj.style.visibility = "visible";
} else {
	obj.style.visibility = "hidden";
}
}
