<!--
 
//function to toggle the display of collapsible elements
 
function toggle(sectionID, indicatorID){
 
if (document.getElementById) {
	var objSection = document.getElementById(sectionID);
	var objIndicator = document.getElementById(indicatorID);
}
else if (document.all) {
	var objSection = document.all[sectionID];	
	var objIndicator = document.all[indicatorID];
}
 
	if (objSection!=null){
 
	if (objSection.style.display=="none"){
		objSection.style.display="";
		objIndicator.innerHTML="&nbsp;&laquo;";
	} else {
    		objSection.style.display="none";
		objIndicator.innerHTML="&nbsp;&raquo;";
	}
 
	}
 
 
}
 
//function to toggle the display of collapsible elements in content section
 
function togglecontent(sectionID){
 
if (document.getElementById) {
	var objSection = document.getElementById(sectionID);
}
else if (document.all) {
	var objSection = document.all[sectionID];	
}
 
	if (objSection!=null){
 
	if (objSection.style.display=="none"){
		objSection.style.display="";
	} else {
    		objSection.style.display="none";
	}
 
	}
 
 
}
 
 
//function to set the opening status of collapsible elements
 
function settoggle(sectionID, indicatorID, state) {
 
if (document.getElementById) {
	var objSection = document.getElementById(sectionID);
	var objIndicator = document.getElementById(indicatorID);
}
else if (document.all) {
	var objSection = document.all[sectionID];	
	var objIndicator = document.all[indicatorID];
}
	if (objSection!=null){
	if (state=="closed"){
    		objSection.style.display="none";
		if (objIndicator) objIndicator.innerHTML="&nbsp;&raquo;";
		} else {
		objSection.style.display="";
		if (objIndicator) objIndicator.innerHTML="&nbsp;&laquo;";
	}	
	}
}
 
 
//function to set the opening status of collapsible elements in content view
 
function settogglecontent(sectionID, state) {
 
if (document.getElementById) {
	var objSection = document.getElementById(sectionID);
}
else if (document.all) {
	var objSection = document.all[sectionID];	
}
	if (objSection!=null){
	if (state=="closed"){
    		objSection.style.display="none";
		} else {
		objSection.style.display="";
	}	
	}
}
//-->
