function refresh(ret,w,p,d){

$("#"+ret+"_load").attr("src","i/load.gif");

var uristring="width="+w+"&profile="+p+"&d="+d+"&ret="+ret+"&rnd="+Math.random();

$.ajax({
   type: "POST",
   url: "listloader.html",
   data: uristring,
   success: function(data){$("#"+ret).html(data);}
});


$("#"+ret).css("width","75px");

$('#'+ret).ajaxComplete(function(){

// $("#"+ret).change();
$("#"+ret).unbind();

$("#"+ret+"_load").attr("src","i/s.gif");

});

};

