function setObjWidth( object, x_times, by_value )
{
   if(document.getElementById( object ))
   {
      document.getElementById( object ).style.width = ( x_times * by_value ) + 'px';
   }
}