/* open close div javascript function Used by DB - IP  REMOVE ON GO LIVE */

	function toggleSectionVisibility(sectionName){
    	// toggle the visibility of the html content
        toggleDisplay(document.getElementById(sectionName));
    }
	
    /* toggles the display property of a particular object in the page */
    function toggleDisplay(objectId) {
		//alert(objectId.style.display);
        if ( objectId.style.display == 'block' ){
            objectId.style.display = 'none';
        } else {
            objectId.style.display = 'block';
        }
    }
	
	function toggleArrow(whichOne) {
        if(document.getElementById('notesDropDownArrow'  + whichOne).className == 'noteOpen') {
			document.getElementById('notesDropDownArrow' + whichOne).className = 'noteClosed';
		} else {
			document.getElementById('notesDropDownArrow' + whichOne).className = 'noteOpen';
		}
    }
