// JavaScript Document
function showSection(section)
{
	if (section.style.display =='')
		resetDisplay();
	else 
		section.style.display='';
}

function resetDisplay()
{
	medical.style.display='none';
	health_hiv.style.display='none';
	consultant.style.display='none';
	chart.style.display='none';
}

function popupWin(newLoc, newHeight, newWidth) {	
	newWin = open("",newLoc,"scrollbars=yes,resizable=yes,height=" + newHeight + ",width=" + newWidth);
}


<!-- USAGE: <A HREF="..." ONCLICK="javascript:popupWin('PopHelp',400,520); TARGET="PopHelp"> </A> -->
