function ctrl_pic_size(s,width,heig){
	var w = width?width:1000;
	var h =heig?heig:3000;
	$("#"+s+" img").each(function(){
           var tmp_w = $(this).width();
	   var tmp_h = $(this).height();
           if(tmp_w>w)
	   {
	    t_w=w;
	    var t_h = Math.round(tmp_h*w/tmp_w);
            if(t_h > h)
	      {
	         t_h=h;
	         t_w= Math.round(tmp_w*t_h/tmp_h);
	       }
	  }
	  else if(tmp_h>h)
	  {
	      t_h=h;
	      t_w= Math.round(tmp_w*t_h/tmp_h);
	      if(tmp_w>w)
	       {
	        t_w=w;
	        var t_h = Math.round(tmp_h*w/tmp_w);
	       } 
	  }
	  else{
	    t_h=tmp_h;
	    t_w=tmp_w;
	  }
	  
	  $(this).height(t_h);
	  $(this).width(t_w);
	});
}