home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / libHighlight.inc < prev    next >
Text File  |  1997-11-01  |  568b  |  18 lines

  1. <% If Session("IEVersion") >= 4 Then %>
  2. <SCRIPT LANGUAGE="VBScript">
  3. <!--
  4.   Function document_onmouseover
  5.     If window.event.toElement.tagName = "A" Then
  6.       window.event.toElement.setAttribute OrigColor, window.event.toElement.style.color
  7.       window.event.toElement.style.color = "magenta"
  8.     End If
  9.   End Function
  10.  
  11.   Function document_onmouseout
  12.     If window.event.fromElement.tagName = "A" Then
  13.       window.event.fromElement.style.color = window.event.fromElement.getAttribute(OrigColor)
  14.     End If
  15.   End Function
  16. -->
  17. </SCRIPT>
  18. <% End If %>