//This is the master JavaScript file for the HTML Help documentation.

/* These functions (doSection, noSection) are used to make sidebars appear and disappear.

function doSection (secNum){
	//display the section if it's not displayed; hide it if it is displayed
	if (secNum.style.display=="none"){secNum.style.display=""}
	else{secNum.style.display="none"}
}

function noSection (secNum){
	//remove the section when user clicks in the opened DIV
	if (secNum.style.display==""){secNum.style.display="none"}
}

*/

function showSection (divID){
	//display the section if it's not displayed; hide it if it is displayed
	if (divID.style.display=="none"){divID.style.display=""}
	else                            {divID.style.display="none"}
}

function hideSection (divID){
	//remove the section when user clicks in the opened DIV
	if (divID.style.display=="")    {divID.style.display="none"}
}


function doExpand (divID,imgID){
	//expand the paragraph and rotate the arrow; collapse and rotate it back
	if (divID.style.display=="none"){divID.style.display="";imgID.src="Images/minus.gif"}
	else{divID.style.display="none";imgID.src="Images/plus.gif"}
}

