function ShowHideContainer(strId) {
	var oo = document.getElementById(strId);
	if(!oo) {
		return;
	}
	
	if(oo.style.display == 'block') {
		oo.style.display = 'none';
	} else {
		oo.style.display = 'block';
	}
}
