function showHide( objId ){
	var Obj  =  findObj( objId );
	Obj.style.display  =  Obj.style.display=='none' ? 'block' : 'none';
}
