// @see myQuickform_section
	jQuery.fn.extend({
		show_section:function(sectionname){/*debug('show section '+sectionname);*/ this.find("#body_"+sectionname).show();}, 
		hide_section:function(sectionname){/*debug('hide section '+sectionname);*/ this.find("#body_"+sectionname).hide();},
		show_group:function(sectionname)  {/*debug('show group '+sectionname); */  this.find("#group_"+sectionname).show();}, 
		hide_group:function(sectionname)  {/*debug('hide group '+sectionname); */  this.find("#group_"+sectionname).hide();}
	});

