#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <IE.au3>
$Form1 = GUICreate("Form1", 623, 449, 192, 114)
$Obj1 = ObjCreate("Shell.Explorer.2")
$Obj1_ctrl = GUICtrlCreateObj($Obj1, 6, 6, 608, 434)
GUISetState(@SW_SHOW)
_IENavigate($Obj1, 'http://ya.ru')
$oImgs = _IEImgGetCollection($Obj1)
For $oImg In $oImgs
$oImg.style.display = 'none'
; ИЛИ
; $oImg.parentNode.removeChild($oImg)
Next
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd