Hi Jon,

   We've found a bug when the Data Explorer - Mascot macro is used with
   Internet Explorer 4.0. I believe that MSIE 5.0 is specified for Data
   Explorer, so this may not be a concern.

   With MSIE 4.0, copying text to an input field of type text fails (e.g.
   mass tolerance & title). The fix is to change the following line in
   frmMascot:

              If TypeName(Element) = "HTMLTextAreaElement" Or _
                TypeName(Element) = "HTMLInputElement" Or _
                TypeName(Element) = "HTMLSelectElement" Or _
                TypeName(Element) = "HTMLCheckboxElement" Then

  to

              If TypeName(Element) = "HTMLTextAreaElement" Or _
                TypeName(Element) = "HTMLInputElement" Or _
                TypeName(Element) = "HTMLInputTextElement" Or _
                TypeName(Element) = "HTMLSelectElement" Or _
                TypeName(Element) = "HTMLCheckboxElement" Then


Return