function showContainer(id, style, animate) {
	//alert("id: "+id);
	var obj = document.getElementById(id);
	//alert("obj: "+obj);
	if ((animate == true) && (obj.style.display == "none")) {
		changeOpac(id, 0);
		obj.style.display = style;
		fadeIn(id,5,100,100);
	} else {
		try {
			obj.style.display = style;
		} catch(e) {}
	}
	
}
