interface HTMLImgElement : HTMLElement
{
  attribute boolean  isMap;  // A Boolean value that determines if an image contains an image map.
  attribute wstring  useMap; // A String value that determines the name of the associated image map (if any).
  attribute wstring  border; // A String value that determines whether an image has a border and sets the width of the border if it is available.
  attribute long     vspace; // An Integer value that determines the vertical space around an image in pixels
  attribute long     hspace; // An Integer value that determines the horizontal space around an image in pixels
  attribute wstring  alt;    //A String value that determines the alternate text to associate with the image.
  attribute wstring  src;    // A String value that determines the source of the image as a URL
  attribute wstring  lowSrc; // A String value that determines the low-resolution source image to display before loading the image defined in the src attribute.
  attribute wstring  align;  //A String value that determines the alignment of the image.
  attribute long     width;  // An Integer value that determines the width of the image in pixels.
  attribute long     height; // An Integer value that determines the height of the image in pixels.
};

