function swap(targetId,HeadingCount){	  if (document.getElementById)        {        target = document.getElementById("Heading" + targetId);		            if (target.style.display == "none")                {                target.style.display = "";				for ( i = 1; i < HeadingCount+1; i++ ){				thisSection = document.getElementById("Heading" + i);				if (target != thisSection){				thisSection.style.display = "none";				}								}				}        }}function hideall(HeadingCount){  if (document.getElementById) {				for ( i = 1; i < HeadingCount+1; i++ ){				thisSection = document.getElementById("Heading" + i);				if (thisSection != null){					if (thisSection.className != 'Ignore') {						thisSection.style.display = "none"					}			}        }  }}