function load_partial(target,name) {
    element = $(target);
    ind = target+"_loading_indicator";
    if (!element) 
        return 0;
    element.innerHTML = "<img style='margin-top:50%;margin-left:50%;' src='images/loading_smal.gif' id='"+ind+"'/>"; 
    loader = new Ajax.Updater(target, 'parts/' + name + '.phtml', 
		     {
		       asynchronous:true,
		      evalScripts:true,
		      onComplete:function(request){
		      
		        Element.hide(ind)
		      }, 
		      onLoading:function(request){
		        Element.show(ind);
		      }
            });  
    return 1;
}
