function toggle(sID){
	oTxt=document.all(sID+'_txt');
	if(oTxt.style.display=='none'){oTxt.style.display=''}
	else{oTxt.style.display='none'}
}
function clickExpand(n){
	for(i=1;i<n;i++){
		oTxt=document.all(i+'_txt')
		oTxt.style.display=''
  }
}
function clickCollapse(n){
  for(i=1;i<n;i++){
  	oTxt=document.all(i+'_txt')
		oTxt.style.display='none'
  }
}
function toggleall(n){
	oTxt=document.all('1_txt');
	if(oTxt.style.display=='none'){clickExpand(n)}
	else{clickCollapse(n)}
}
function StopError() {
	return true;
}
window.onerror = StopError;