 function imagex()
  {
    for (i = 1; i < document.images.length; i++)
    {
      while ( !document.images[i].complete )
      {
        break;
      }
      if ( document.images[i].width > 400 )
      {
        document.images[i].width = 400;
      }
    }
  }
