| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <public:component lightweight="true">
- <public:attach event="onmouseover" onevent="on()"/>
- <public:attach event="onmouseout" onevent="off()"/>
- <script language="JavaScript">
- function on()
- {
- var o = event.srcElement;
- switch (o.tagName)
- {
- case "TD":
- o = o.parentElement;
- break;
- case "NOBR":
- case "IMG":
- o = o.parentElement.parentElement;
- }
- if (o.className == "wizItem")
- {
- if (!o.title && o.lastChild.firstChild.innerText != "")
- {
- o.title = o.lastChild.firstChild.innerText;
- }
- with (o.runtimeStyle)
- {
- color = "#000000";
- backgroundColor = "#E2E8F7";
- }
- }
- }
- function off()
- {
- var o = event.srcElement;
- switch (o.tagName)
- {
- case "TD": o = o.parentElement; break;
- case "NOBR":
- case "IMG":
- o = o.parentElement.parentElement;
- }
- if (o.className == "wizItem")
- {
- with (o.runtimeStyle)
- {
- color = "";
- backgroundColor = "";
- }
- }
- }
- </script>
- </public:component>
|