function ExpandCollapse(Obj){
	//try{
		if (Obj.style.display=='none'){
			Obj.style.display = 'block';
		}else if ((Obj.style.display=='block')||(Obj.style.display=='inline')){
			Obj.style.display = 'none';
		}
	//}catch(e){
	//}
}

function ExpandIfTicked(CheckBox,TargetObj){
	if (CheckBox.checked){
		TargetObj.style.display = 'block'
	}else{
		TargetObj.style.display = 'none'
	}
}