
function ExpandOrCollapse(o,p,m){
	if (typeof(o.style)=='object'){
		if (o.style.display=='block') {
			p.style.display='inline';
			m.style.display='none';
			o.style.display='none';
		} else {
			if (o.style.display=='none' || o.style.display=='') {
				p.style.display='none';
				m.style.display='inline';
				o.style.display='block';
			}
		}
	}
}

function fCharacterPlus(d){

	if (typeof(currentCharacter)=='object' && typeof(currentCharacter.style)=='object') {
		if (currentCharacter.style.display=='inline') {
			currentCharacter.style.display='none';
		} else {
			currentCharacter.style.display='inline';
		}
	}
	if (typeof(d)=='object' && typeof(d.style)=='object'){
		if (d.style.display=='inline') {
			d.style.display='none';
		} else {
			d.style.display='inline';
		}
		currentCharacter = d;
		return false;
	}
}
