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