wz_tooltip.js
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:17k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. /* This notice must be untouched at all times.
  2. wz_tooltip.js    v. 3.38
  3. The latest version is available at
  4. http://www.walterzorn.com
  5. or http://www.devira.com
  6. or http://www.walterzorn.de
  7. Copyright (c) 2002-2005 Walter Zorn. All rights reserved.
  8. Created 1. 12. 2002 by Walter Zorn (Web: http://www.walterzorn.com )
  9. Last modified: 9. 12. 2005
  10. Cross-browser tooltips working even in Opera 5 and 6,
  11. as well as in NN 4, Gecko-Browsers, IE4+, Opera 7+ and Konqueror.
  12. No onmouseouts required.
  13. Appearance of tooltips can be individually configured
  14. via commands within the onmouseovers.
  15. LICENSE: LGPL
  16. This library is free software; you can redistribute it and/or
  17. modify it under the terms of the GNU Lesser General Public
  18. License (LGPL) as published by the Free Software Foundation; either
  19. version 2.1 of the License, or (at your option) any later version.
  20. This library is distributed in the hope that it will be useful,
  21. but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. For more details on the GNU Lesser General Public License,
  24. see http://www.gnu.org/copyleft/lesser.html
  25. */
  26. ////////////////  GLOBAL TOOPTIP CONFIGURATION  /////////////////////
  27. var ttAbove       = false;        // tooltip above mousepointer? Alternative: true
  28. var ttBgColor     = "#e6ecff";
  29. var ttBgImg       = "";           // path to background image;
  30. var ttBorderColor = "#003399";
  31. var ttBorderWidth = 1;
  32. var ttDelay       = 500;          // time span until tooltip shows up [milliseconds]
  33. var ttFontColor   = "#000066";
  34. var ttFontFace    = "arial,helvetica,sans-serif";
  35. var ttFontSize    = "11px";
  36. var ttFontWeight  = "normal";     // alternative: "bold";
  37. var ttLeft        = false;        // tooltip on the left of the mouse? Alternative: true
  38. var ttOffsetX     = 12;           // horizontal offset of left-top corner from mousepointer
  39. var ttOffsetY     = 15;           // vertical offset                   "
  40. var ttOpacity     = 100;          // opacity of tooltip in percent (must be integer between 0 and 100)
  41. var ttPadding     = 3;            // spacing between border and content
  42. var ttShadowColor = "";
  43. var ttShadowWidth = 0;
  44. var ttStatic      = false;        // tooltip NOT move with the mouse? Alternative: true
  45. var ttSticky      = false;        // do NOT hide tooltip on mouseout? Alternative: true
  46. var ttTemp        = 0;            // time span after which the tooltip disappears; 0 (zero) means "infinite timespan"
  47. var ttTextAlign   = "left";
  48. var ttTitleColor  = "#ffffff";    // color of caption text
  49. var ttWidth       = 300;
  50. ////////////////////  END OF TOOLTIP CONFIG  ////////////////////////
  51. //////////////  TAGS WITH TOOLTIP FUNCTIONALITY  ////////////////////
  52. // List may be extended or shortened:
  53. var tt_tags = new Array("a","area","b","big","caption","center","code","dd","div","dl","dt","em","h1","h2","h3","h4","h5","h6","i","img","input","li","map","ol","p","pre","s", "select", "small","span","strike","strong","sub","sup","table","td","th","tr","tt","u","var","ul","layer");
  54. /////////////////////////////////////////////////////////////////////
  55. ///////// DON'T CHANGE ANYTHING BELOW THIS LINE /////////////////////
  56. var tt_obj = null,         // current tooltip
  57. tt_ifrm = null,            // iframe to cover windowed controls in IE
  58. tt_objW = 0, tt_objH = 0,  // width and height of tt_obj
  59. tt_objX = 0, tt_objY = 0,
  60. tt_offX = 0, tt_offY = 0,
  61. xlim = 0, ylim = 0,        // right and bottom borders of visible client area
  62. tt_sup = false,            // true if T_ABOVE cmd
  63. tt_sticky = false,         // tt_obj sticky?
  64. tt_wait = false,
  65. tt_act = false,            // tooltip visibility flag
  66. tt_sub = false,            // true while tooltip below mousepointer
  67. tt_u = "undefined",
  68. tt_mf = null,              // stores previous mousemove evthandler
  69. // Opera: disable href when hovering <a>
  70. tt_tag = null;             // stores hovered dom node, href and previous statusbar txt
  71. var tt_db = (document.compatMode && document.compatMode != "BackCompat")? document.documentElement : document.body? document.body : null,
  72. tt_n = navigator.userAgent.toLowerCase(),
  73. tt_nv = navigator.appVersion;
  74. // Browser flags
  75. var tt_op = !!(window.opera && document.getElementById),
  76. tt_op6 = tt_op && !document.defaultView,
  77. tt_op7 = tt_op && !tt_op6,
  78. tt_ie = tt_n.indexOf("msie") != -1 && document.all && tt_db && !tt_op,
  79. tt_ie6 = tt_ie && parseFloat(tt_nv.substring(tt_nv.indexOf("MSIE")+5)) >= 5.5,
  80. tt_n4 = (document.layers && typeof document.classes != tt_u),
  81. tt_n6 = (!tt_op && document.defaultView && typeof document.defaultView.getComputedStyle != tt_u),
  82. tt_w3c = !tt_ie && !tt_n6 && !tt_op && document.getElementById;
  83. function tt_Int(t_x)
  84. {
  85. var t_y;
  86. return isNaN(t_y = parseInt(t_x))? 0 : t_y;
  87. }
  88. function wzReplace(t_x, t_y)
  89. {
  90. var t_ret = "",
  91. t_str = this,
  92. t_xI;
  93. while((t_xI = t_str.indexOf(t_x)) != -1)
  94. {
  95. t_ret += t_str.substring(0, t_xI) + t_y;
  96. t_str = t_str.substring(t_xI + t_x.length);
  97. }
  98. return t_ret+t_str;
  99. }
  100. String.prototype.wzReplace = wzReplace;
  101. function tt_N4Tags(tagtyp, t_d, t_y)
  102. {
  103. t_d = t_d || document;
  104. t_y = t_y || new Array();
  105. var t_x = (tagtyp=="a")? t_d.links : t_d.layers;
  106. for(var z = t_x.length; z--;) t_y[t_y.length] = t_x[z];
  107. for(z = t_d.layers.length; z--;) t_y = tt_N4Tags(tagtyp, t_d.layers[z].document, t_y);
  108. return t_y;
  109. }
  110. function tt_Htm(tt, t_id, txt)
  111. {
  112. var t_bgc = (typeof tt.T_BGCOLOR != tt_u)? tt.T_BGCOLOR : ttBgColor,
  113. t_bgimg   = (typeof tt.T_BGIMG != tt_u)? tt.T_BGIMG : ttBgImg,
  114. t_bc      = (typeof tt.T_BORDERCOLOR != tt_u)? tt.T_BORDERCOLOR : ttBorderColor,
  115. t_bw      = (typeof tt.T_BORDERWIDTH != tt_u)? tt.T_BORDERWIDTH : ttBorderWidth,
  116. t_ff      = (typeof tt.T_FONTFACE != tt_u)? tt.T_FONTFACE : ttFontFace,
  117. t_fc      = (typeof tt.T_FONTCOLOR != tt_u)? tt.T_FONTCOLOR : ttFontColor,
  118. t_fsz     = (typeof tt.T_FONTSIZE != tt_u)? tt.T_FONTSIZE : ttFontSize,
  119. t_fwght   = (typeof tt.T_FONTWEIGHT != tt_u)? tt.T_FONTWEIGHT : ttFontWeight,
  120. t_opa     = (typeof tt.T_OPACITY != tt_u)? tt.T_OPACITY : ttOpacity,
  121. t_padd    = (typeof tt.T_PADDING != tt_u)? tt.T_PADDING : ttPadding,
  122. t_shc     = (typeof tt.T_SHADOWCOLOR != tt_u)? tt.T_SHADOWCOLOR : (ttShadowColor || 0),
  123. t_shw     = (typeof tt.T_SHADOWWIDTH != tt_u)? tt.T_SHADOWWIDTH : (ttShadowWidth || 0),
  124. t_algn    = (typeof tt.T_TEXTALIGN != tt_u)? tt.T_TEXTALIGN : ttTextAlign,
  125. t_tit     = (typeof tt.T_TITLE != tt_u)? tt.T_TITLE : "",
  126. t_titc    = (typeof tt.T_TITLECOLOR != tt_u)? tt.T_TITLECOLOR : ttTitleColor,
  127. t_w       = (typeof tt.T_WIDTH != tt_u)? tt.T_WIDTH  : ttWidth;
  128. if(t_shc || t_shw)
  129. {
  130. t_shc = t_shc || "#cccccc";
  131. t_shw = t_shw || 5;
  132. }
  133. if(tt_n4 && (t_fsz == "10px" || t_fsz == "11px")) t_fsz = "12px";
  134. var t_optx = (tt_n4? '' : tt_n6? ('-moz-opacity:'+(t_opa/100.0)) : tt_ie? ('filter:Alpha(opacity='+t_opa+')') : ('opacity:'+(t_opa/100.0))) + ';';
  135. var t_y = '<div id="'+t_id+'" style="position:absolute;z-index:1010;';
  136. t_y += 'left:0px;top:0px;width:'+(t_w+t_shw)+'px;visibility:'+(tt_n4? 'hide' : 'hidden')+';'+t_optx+'">' +
  137. '<table border="0" cellpadding="0" cellspacing="0"'+(t_bc? (' bgcolor="'+t_bc+'" style="background:'+t_bc+';"') : '')+' width="'+t_w+'">';
  138. if(t_tit)
  139. {
  140. t_y += '<tr><td style="padding-left:3px;padding-right:3px;" align="'+t_algn+'"><font color="'+t_titc+'" face="'+t_ff+'" ' +
  141. 'style="color:'+t_titc+';font-family:'+t_ff+';font-size:'+t_fsz+';"><b>' +
  142. (tt_n4? '&nbsp;' : '')+t_tit+'</b></font></td></tr>';
  143. }
  144. t_y += '<tr><td><table border="0" cellpadding="'+t_padd+'" cellspacing="'+t_bw+'" width="100%">' +
  145. '<tr><td'+(t_bgc? (' bgcolor="'+t_bgc+'"') : '')+(t_bgimg? ' background="'+t_bgimg+'"' : '')+' style="text-align:'+t_algn+';';
  146. if(tt_n6) t_y += 'padding:'+t_padd+'px;';
  147. t_y += '" align="'+t_algn+'"><font color="'+t_fc+'" face="'+t_ff+'"' +
  148. ' style="color:'+t_fc+';font-family:'+t_ff+';font-size:'+t_fsz+';font-weight:'+t_fwght+';">';
  149. if(t_fwght == 'bold') t_y += '<b>';
  150. t_y += txt;
  151. if(t_fwght == 'bold') t_y += '</b>';
  152. t_y += '</font></td></tr></table></td></tr></table>';
  153. if(t_shw)
  154. {
  155. var t_spct = Math.round(t_shw*1.3);
  156. if(tt_n4)
  157. {
  158. t_y += '<layer bgcolor="'+t_shc+'" left="'+t_w+'" top="'+t_spct+'" width="'+t_shw+'" height="0"></layer>' +
  159. '<layer bgcolor="'+t_shc+'" left="'+t_spct+'" align="bottom" width="'+(t_w-t_spct)+'" height="'+t_shw+'"></layer>';
  160. }
  161. else
  162. {
  163. t_optx = tt_n6? '-moz-opacity:0.85;' : tt_ie? 'filter:Alpha(opacity=85);' : 'opacity:0.85;';
  164. t_y += '<div id="'+t_id+'R" style="position:absolute;background:'+t_shc+';left:'+t_w+'px;top:'+t_spct+'px;width:'+t_shw+'px;height:1px;overflow:hidden;'+t_optx+'"></div>' +
  165. '<div style="position:relative;background:'+t_shc+';left:'+t_spct+'px;top:0px;width:'+(t_w-t_spct)+'px;height:'+t_shw+'px;overflow:hidden;'+t_optx+'"></div>';
  166. }
  167. }
  168. return(t_y+'</div>' +
  169. (tt_ie6 ? '<iframe id="TTiEiFrM" src="javascript:false" scrolling="no" frameborder="0" style="filter:Alpha(opacity=0);position:absolute;top:0px;left:0px;display:none;"></iframe>' : ''));
  170. }
  171. function tt_EvX(t_e)
  172. {
  173. var t_y = tt_Int(t_e.pageX || t_e.clientX || 0) +
  174. tt_Int(tt_ie? tt_db.scrollLeft : 0) +
  175. tt_offX;
  176. if(t_y > xlim) t_y = xlim;
  177. var t_scr = tt_Int(window.pageXOffset || (tt_db? tt_db.scrollLeft : 0) || 0);
  178. if(t_y < t_scr) t_y = t_scr;
  179. return t_y;
  180. }
  181. function tt_EvY(t_e)
  182. {
  183. var t_y = tt_Int(t_e.pageY || t_e.clientY || 0) +
  184. tt_Int(tt_ie? tt_db.scrollTop : 0);
  185. if(tt_sup) t_y -= (tt_objH + tt_offY - 15);
  186. else if(t_y > ylim || !tt_sub && t_y > ylim-24)
  187. {
  188. t_y -= (tt_objH + 5);
  189. tt_sub = false;
  190. }
  191. else
  192. {
  193. t_y += tt_offY;
  194. tt_sub = true;
  195. }
  196. return t_y;
  197. }
  198. function tt_ReleasMov()
  199. {
  200. if(document.onmousemove == tt_Move)
  201. {
  202. if(!tt_mf && document.releaseEvents) document.releaseEvents(Event.MOUSEMOVE);
  203. document.onmousemove = tt_mf;
  204. }
  205. }
  206. function tt_ShowIfrm(t_x)
  207. {
  208. if(!tt_obj || !tt_ifrm) return;
  209. if(t_x)
  210. {
  211. tt_ifrm.style.width = tt_objW+'px';
  212. tt_ifrm.style.height = tt_objH+'px';
  213. tt_ifrm.style.display = "block";
  214. }
  215. else tt_ifrm.style.display = "none";
  216. }
  217. function tt_GetDiv(t_id)
  218. {
  219. return(
  220. tt_n4? (document.layers[t_id] || null)
  221. : tt_ie? (document.all[t_id] || null)
  222. : (document.getElementById(t_id) || null)
  223. );
  224. }
  225. function tt_GetDivW()
  226. {
  227. return tt_Int(
  228. tt_n4? tt_obj.clip.width
  229. : (tt_obj.style.pixelWidth || tt_obj.offsetWidth)
  230. );
  231. }
  232. function tt_GetDivH()
  233. {
  234. return tt_Int(
  235. tt_n4? tt_obj.clip.height
  236. : (tt_obj.style.pixelHeight || tt_obj.offsetHeight)
  237. );
  238. }
  239. // Compat with DragDrop Lib: Ensure that z-index of tooltip is lifted beyond toplevel dragdrop element
  240. function tt_SetDivZ()
  241. {
  242. var t_i = tt_obj.style || tt_obj;
  243. if(t_i)
  244. {
  245. if(window.dd && dd.z)
  246. t_i.zIndex = Math.max(dd.z+1, t_i.zIndex);
  247. if(tt_ifrm) tt_ifrm.style.zIndex = t_i.zIndex-1;
  248. }
  249. }
  250. function tt_SetDivPos(t_x, t_y)
  251. {
  252. var t_i = tt_obj.style || tt_obj;
  253. var t_px = (tt_op6 || tt_n4)? '' : 'px';
  254. t_i.left = (tt_objX = t_x) + t_px;
  255. t_i.top = (tt_objY = t_y) + t_px;
  256. if(tt_ifrm)
  257. {
  258. tt_ifrm.style.left = t_i.left;
  259. tt_ifrm.style.top = t_i.top;
  260. }
  261. }
  262. function tt_ShowDiv(t_x)
  263. {
  264. tt_ShowIfrm(t_x);
  265. if(tt_n4) tt_obj.visibility = t_x? 'show' : 'hide';
  266. else tt_obj.style.visibility = t_x? 'visible' : 'hidden';
  267. tt_act = t_x;
  268. }
  269. function tt_OpDeHref(t_e)
  270. {
  271. var t_tag;
  272. if(t_e)
  273. {
  274. t_tag = t_e.target;
  275. while(t_tag)
  276. {
  277. if(t_tag.hasAttribute("href"))
  278. {
  279. tt_tag = t_tag
  280. tt_tag.t_href = tt_tag.getAttribute("href");
  281. tt_tag.removeAttribute("href");
  282. tt_tag.style.cursor = "hand";
  283. tt_tag.onmousedown = tt_OpReHref;
  284. tt_tag.stats = window.status;
  285. window.status = tt_tag.t_href;
  286. break;
  287. }
  288. t_tag = t_tag.parentElement;
  289. }
  290. }
  291. }
  292. function tt_OpReHref()
  293. {
  294. if(tt_tag)
  295. {
  296. tt_tag.setAttribute("href", tt_tag.t_href);
  297. window.status = tt_tag.stats;
  298. tt_tag = null;
  299. }
  300. }
  301. function tt_Show(t_e, t_id, t_sup, t_delay, t_fix, t_left, t_offx, t_offy, t_static, t_sticky, t_temp)
  302. {
  303. if(tt_obj) tt_Hide();
  304. tt_mf = document.onmousemove || null;
  305. if(window.dd && (window.DRAG && tt_mf == DRAG || window.RESIZE && tt_mf == RESIZE)) return;
  306. var t_sh, t_h;
  307. tt_obj = tt_GetDiv(t_id);
  308. if(tt_obj)
  309. {
  310. t_e = t_e || window.event;
  311. tt_sub = !(tt_sup = t_sup);
  312. tt_sticky = t_sticky;
  313. tt_objW = tt_GetDivW();
  314. tt_objH = tt_GetDivH();
  315. tt_offX = t_left? -(tt_objW+t_offx) : t_offx;
  316. tt_offY = t_offy;
  317. if(tt_op7) tt_OpDeHref(t_e);
  318. if(tt_n4)
  319. {
  320. if(tt_obj.document.layers.length)
  321. {
  322. t_sh = tt_obj.document.layers[0];
  323. t_sh.clip.height = tt_objH - Math.round(t_sh.clip.width*1.3);
  324. }
  325. }
  326. else
  327. {
  328. t_sh = tt_GetDiv(t_id+'R');
  329. if(t_sh)
  330. {
  331. t_h = tt_objH - tt_Int(t_sh.style.pixelTop || t_sh.style.top || 0);
  332. if(typeof t_sh.style.pixelHeight != tt_u) t_sh.style.pixelHeight = t_h;
  333. else t_sh.style.height = t_h+'px';
  334. }
  335. }
  336. xlim = tt_Int((tt_db && tt_db.clientWidth)? tt_db.clientWidth : window.innerWidth) +
  337. tt_Int(window.pageXOffset || (tt_db? tt_db.scrollLeft : 0) || 0) -
  338. tt_objW -
  339. (tt_n4? 21 : 0);
  340. ylim = tt_Int(window.innerHeight || tt_db.clientHeight) +
  341. tt_Int(window.pageYOffset || (tt_db? tt_db.scrollTop : 0) || 0) -
  342. tt_objH - tt_offY;
  343. tt_SetDivZ();
  344. if(t_fix) tt_SetDivPos(tt_Int((t_fix = t_fix.split(','))[0]), tt_Int(t_fix[1]));
  345. else tt_SetDivPos(tt_EvX(t_e), tt_EvY(t_e));
  346. var t_txt = 'tt_ShowDiv('true');';
  347. if(t_sticky) t_txt += '{'+
  348. 'tt_ReleasMov();'+
  349. 'window.tt_upFunc = document.onmouseup || null;'+
  350. 'if(document.captureEvents) document.captureEvents(Event.MOUSEUP);'+
  351. 'document.onmouseup = new Function("window.setTimeout('tt_Hide();', 10);");'+
  352. '}';
  353. else if(t_static) t_txt += 'tt_ReleasMov();';
  354. if(t_temp > 0) t_txt += 'window.tt_rtm = window.setTimeout('tt_sticky = false; tt_Hide();','+t_temp+');';
  355. window.tt_rdl = window.setTimeout(t_txt, t_delay);
  356. if(!t_fix)
  357. {
  358. if(document.captureEvents) document.captureEvents(Event.MOUSEMOVE);
  359. document.onmousemove = tt_Move;
  360. }
  361. }
  362. }
  363. var tt_area = false;
  364. function tt_Move(t_ev)
  365. {
  366. if(!tt_obj) return;
  367. if(tt_n6 || tt_w3c)
  368. {
  369. if(tt_wait) return;
  370. tt_wait = true;
  371. setTimeout('tt_wait = false;', 5);
  372. }
  373. var t_e = t_ev || window.event;
  374. tt_SetDivPos(tt_EvX(t_e), tt_EvY(t_e));
  375. if(tt_op6)
  376. {
  377. if(tt_area && t_e.target.tagName != 'AREA') tt_Hide();
  378. else if(t_e.target.tagName == 'AREA') tt_area = true;
  379. }
  380. }
  381. function tt_Hide()
  382. {
  383. if(window.tt_obj)
  384. {
  385. if(window.tt_rdl) window.clearTimeout(tt_rdl);
  386. if(!tt_sticky || !tt_act)
  387. {
  388. if(window.tt_rtm) window.clearTimeout(tt_rtm);
  389. tt_ShowDiv(false);
  390. tt_SetDivPos(-tt_objW, -tt_objH);
  391. tt_obj = null;
  392. if(typeof window.tt_upFunc != tt_u) document.onmouseup = window.tt_upFunc;
  393. }
  394. tt_sticky = false;
  395. if(tt_op6 && tt_area) tt_area = false;
  396. tt_ReleasMov();
  397. if(tt_op7) tt_OpReHref();
  398. }
  399. }
  400. function tt_Init()
  401. {
  402. if(!(tt_op || tt_n4 || tt_n6 || tt_ie || tt_w3c)) return;
  403. var htm = tt_n4? '<div style="position:absolute;"></div>' : '',
  404. tags,
  405. t_tj,
  406. over,
  407. esc = 'return escape(';
  408. var i = tt_tags.length; while(i--)
  409. {
  410. tags = tt_ie? (document.all.tags(tt_tags[i]) || 1)
  411. : document.getElementsByTagName? (document.getElementsByTagName(tt_tags[i]) || 1)
  412. : (!tt_n4 && tt_tags[i]=="a")? document.links
  413. : 1;
  414. if(tt_n4 && (tt_tags[i] == "a" || tt_tags[i] == "layer")) tags = tt_N4Tags(tt_tags[i]);
  415. var j = tags.length; while(j--)
  416. {
  417. if(typeof (t_tj = tags[j]).onmouseover == "function" && t_tj.onmouseover.toString().indexOf(esc) != -1 && !tt_n6 || tt_n6 && (over = t_tj.getAttribute("onmouseover")) && over.indexOf(esc) != -1)
  418. {
  419. if(over) t_tj.onmouseover = new Function(over);
  420. var txt = unescape(t_tj.onmouseover());
  421. htm += tt_Htm(
  422. t_tj,
  423. "tOoLtIp"+i+""+j,
  424. txt.wzReplace("& ","&")
  425. );
  426. t_tj.onmouseover = new Function('e',
  427. 'tt_Show(e,'+
  428. '"tOoLtIp' +i+''+j+ '",'+
  429. ((typeof t_tj.T_ABOVE != tt_u)? t_tj.T_ABOVE : ttAbove)+','+
  430. ((typeof t_tj.T_DELAY != tt_u)? t_tj.T_DELAY : ttDelay)+','+
  431. ((typeof t_tj.T_FIX != tt_u)? '"'+t_tj.T_FIX+'"' : '""')+','+
  432. ((typeof t_tj.T_LEFT != tt_u)? t_tj.T_LEFT : ttLeft)+','+
  433. ((typeof t_tj.T_OFFSETX != tt_u)? t_tj.T_OFFSETX : ttOffsetX)+','+
  434. ((typeof t_tj.T_OFFSETY != tt_u)? t_tj.T_OFFSETY : ttOffsetY)+','+
  435. ((typeof t_tj.T_STATIC != tt_u)? t_tj.T_STATIC : ttStatic)+','+
  436. ((typeof t_tj.T_STICKY != tt_u)? t_tj.T_STICKY : ttSticky)+','+
  437. ((typeof t_tj.T_TEMP != tt_u)? t_tj.T_TEMP : ttTemp)+
  438. ');'
  439. );
  440. t_tj.onmouseout = tt_Hide;
  441. if(t_tj.alt) t_tj.alt = "";
  442. if(t_tj.title) t_tj.title = "";
  443. }
  444. }
  445. }
  446. document.write(htm);
  447. if(document.getElementById) tt_ifrm = document.getElementById("TTiEiFrM");
  448. }
  449. tt_Init();