Hello, I need help, please. I run this script wizard.hta but radio button and description file htm not display. Here's my code.  '**************************************************************************** '* enumImages '* find images and create radio buttons '**************************************************************************** 'this sub is a little messy because of limitations of win32_shortcutfile and need to go between fso and wmi for different info 'also, without the advantages of .net sorting classes, the old bubble sorting is not the funnest  Sub enumImages(fileName) Dim colFilelist, objFile, strButtons, objShortcut, colTargetList, objTarget, x, y, strKey, strItem ReDim arrButtons(1,-1)  'reset display element style   details.innerHTML        = ""   details.style.visibility = "hidden" '  strButtons               = "<table id=buttonTable>" 'enumerate ghost image shortcuts in specific images subfolder from enumDirs   Set colFileList = objWMIService.ExecQuery _     ("ASSOCIATORS OF {Win32_Directory.Name='z:\winpe\" & fileName & "'} Where ResultClass = CIM_DataFile") 'find ghost image shortcut targetpath (fso)   For each objFile in colFileList     If objFile.Extension = "lnk" Then     	Set objShortcut = objShell.CreateShortcut(objFile.name) 'find ghost image shortcut target (wmi)       Set colTargetList = objWMIService.ExecQuery _         ("Select * from CIM_Datafile Where name = '" & replace(objShortcut.targetpath,"\","\\") & "'") 'add radio button label (from fso) and radio button target (from wmi) to an array         For each objTarget in colTargetList           ReDim Preserve arrButtons(1,UBound(arrButtons,2)+1)           arrButtons(0,UBound(arrButtons,2)) = objShortcut.Description           arrButtons(1,UBound(arrButtons,2)) = "<Input type=radio name=radioList id='" & objTarget.Drive & objTarget.Path & objTarget.fileName &_           "' onClick=showRadioInfo>" & objShortcut.Description & "</BUTTON><BR>"         Next     End If   Next 'perform a a shell sort of the string array based on button label       For x = 0 To UBound(arrButtons,2) - 1         For y = x To UBound(arrButtons,2)           If StrComp(arrButtons(0,x),arrButtons(0,y),vbTextCompare) > 0 Then               strKey           = arrButtons(0,x)               strItem          = arrButtons(1,x)               arrButtons(0,x)  = arrButtons(0,y)               arrButtons(1,x)  = arrButtons(1,y)               arrButtons(0,y)  = strKey               arrButtons(1,y)  = strItem           End If         Next       Next 'create combined buttons html code from sorted buttons array   For x = 0 To UBound(arrButtons,2)     strButtons = strButtons & "<tr><td id=buttonTd>" & arrButtons(1,x) & "</td></tr>"   Next  ' strButtons = strButtons & "</table>" 'create a start button with start image command and append and post resulting html to body   body.innerHTML = strBody & strButtons & "<BR><HR><BR><button id=start Accesskey=S onclick=doTask(strTaskValue)><U>S</U>tart Image!</BUTTON><BR>"   start.style.visibility="hidden" End Sub FoldersWizard.ppt