common.js
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:90k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. /*
  2. [Discuz!] (C)2001-2009 Comsenz Inc.
  3. This is NOT a freeware, use is subject to license terms
  4. $Id: common.js 17535 2009-01-20 05:12:20Z monkey $
  5. */
  6. var BROWSER = {};
  7. var USERAGENT = navigator.userAgent.toLowerCase();
  8. BROWSER.ie = window.ActiveXObject && USERAGENT.indexOf('msie') != -1 && USERAGENT.substr(USERAGENT.indexOf('msie') + 5, 3);
  9. BROWSER.firefox = document.getBoxObjectFor && USERAGENT.indexOf('firefox') != -1 && USERAGENT.substr(USERAGENT.indexOf('firefox') + 8, 3);
  10. BROWSER.chrome = window.MessageEvent && !document.getBoxObjectFor && USERAGENT.indexOf('chrome') != -1 && USERAGENT.substr(USERAGENT.indexOf('chrome') + 7, 10);
  11. BROWSER.opera = window.opera && opera.version();
  12. BROWSER.safari = window.openDatabase && USERAGENT.indexOf('safari') != -1 && USERAGENT.substr(USERAGENT.indexOf('safari') + 7, 8);
  13. BROWSER.other = !BROWSER.ie && !BROWSER.firefox && !BROWSER.chrome && !BROWSER.opera && !BROWSER.safari;
  14. BROWSER.firefox = BROWSER.chrome ? 1 : BROWSER.firefox;
  15. var lang = new Array();
  16. var userAgent = navigator.userAgent.toLowerCase();
  17. var is_opera = userAgent.indexOf('opera') != -1 && opera.version();
  18. var is_moz = (navigator.product == 'Gecko') && userAgent.substr(userAgent.indexOf('firefox') + 8, 3);
  19. var is_ie = (userAgent.indexOf('msie') != -1 && !is_opera) && userAgent.substr(userAgent.indexOf('msie') + 5, 3);
  20. var is_mac = userAgent.indexOf('mac') != -1;
  21. var ajaxdebug = 0;
  22. var codecount = '-1';
  23. var codehtml = new Array();
  24. var charset='utf-8';
  25. //FixPrototypeForGecko
  26. if(is_moz && window.HTMLElement) {
  27. HTMLElement.prototype.__defineSetter__('outerHTML', function(sHTML) {
  28.          var r = this.ownerDocument.createRange();
  29. r.setStartBefore(this);
  30. var df = r.createContextualFragment(sHTML);
  31. this.parentNode.replaceChild(df,this);
  32. return sHTML;
  33. });
  34. HTMLElement.prototype.__defineGetter__('outerHTML', function() {
  35. var attr;
  36. var attrs = this.attributes;
  37. var str = '<' + this.tagName.toLowerCase();
  38. for(var i = 0;i < attrs.length;i++){
  39. attr = attrs[i];
  40. if(attr.specified)
  41. str += ' ' + attr.name + '="' + attr.value + '"';
  42. }
  43. if(!this.canHaveChildren) {
  44. return str + '>';
  45. }
  46. return str + '>' + this.innerHTML + '</' + this.tagName.toLowerCase() + '>';
  47.         });
  48. HTMLElement.prototype.__defineGetter__('canHaveChildren', function() {
  49. switch(this.tagName.toLowerCase()) {
  50. case 'area':case 'base':case 'basefont':case 'col':case 'frame':case 'hr':case 'img':case 'br':case 'input':case 'isindex':case 'link':case 'meta':case 'param':
  51. return false;
  52.          }
  53. return true;
  54. });
  55. HTMLElement.prototype.click = function(){
  56. var evt = this.ownerDocument.createEvent('MouseEvents');
  57. evt.initMouseEvent('click', true, true, this.ownerDocument.defaultView, 1, 0, 0, 0, 0, false, false, false, false, 0, null);
  58. this.dispatchEvent(evt);
  59. }
  60. }
  61. /* Array.prototype.push = function(value) {
  62. this[this.length] = value;
  63. return this.length;
  64. } */
  65. function $(id) {
  66. return document.getElementById(id);
  67. }
  68. function checkall(form, prefix, checkall) {
  69. var checkall = checkall ? checkall : 'chkall';
  70. count = 0;
  71. for(var i = 0; i < form.elements.length; i++) {
  72. var e = form.elements[i];
  73. if(e.name && e.name != checkall && (!prefix || (prefix && e.name.match(prefix)))) {
  74. e.checked = form.elements[checkall].checked;
  75. if(e.checked) {
  76. count++;
  77. }
  78. }
  79. }
  80. return count;
  81. }
  82. function doane(event) {
  83. e = event ? event : window.event;
  84. if(is_ie) {
  85. e.returnValue = false;
  86. e.cancelBubble = true;
  87. } else if(e) {
  88. e.stopPropagation();
  89. e.preventDefault();
  90. }
  91. }
  92. function fetchCheckbox(cbn) {
  93. return $(cbn) && $(cbn).checked == true ? 1 : 0;
  94. }
  95. function getcookie(name) {
  96. var cookie_start = document.cookie.indexOf(name);
  97. var cookie_end = document.cookie.indexOf(";", cookie_start);
  98. return cookie_start == -1 ? '' : unescape(document.cookie.substring(cookie_start + name.length + 1, (cookie_end > cookie_start ? cookie_end : document.cookie.length)));
  99. }
  100. imggroup = new Array();
  101. function thumbImg(obj, method) {
  102. if(!obj) {
  103. return;
  104. }
  105. obj.onload = null;
  106. file = obj.src;
  107. zw = obj.offsetWidth;
  108. zh = obj.offsetHeight;
  109. if(zw < 2) {
  110. if(!obj.id) {
  111. obj.id = 'img_' + Math.random();
  112. }
  113. setTimeout("thumbImg($('" + obj.id + "'), " + method + ")", 100);
  114. return;
  115. }
  116. zr = zw / zh;
  117. method = !method ? 0 : 1;
  118. if(method) {
  119. fixw = obj.getAttribute('_width');
  120. fixh = obj.getAttribute('_height');
  121. if(zw > fixw) {
  122. zw = fixw;
  123. zh = zw / zr;
  124. }
  125. if(zh > fixh) {
  126. zh = fixh;
  127. zw = zh * zr;
  128. }
  129. } else {
  130. var widthary = imagemaxwidth.split('%');
  131. if(widthary.length > 1) {
  132. fixw = $('wrap').clientWidth - 200;
  133. if(widthary[0]) {
  134. fixw = fixw * widthary[0] / 100;
  135. } else if(widthary[1]) {
  136. fixw = fixw < widthary[1] ? fixw : widthary[1];
  137. }
  138. } else {
  139. fixw = widthary[0];
  140. }
  141. if(zw > fixw) {
  142. zw = fixw;
  143. zh = zw / zr;
  144. obj.style.cursor = 'pointer';
  145. if(!obj.onclick) {
  146. obj.onclick = function() {
  147. zoom(obj, obj.src);
  148. }
  149. }
  150. }
  151. }
  152. obj.width = zw;
  153. obj.height = zh;
  154. }
  155. function imgzoom() {}
  156. function attachimg() {}
  157. function in_array(needle, haystack) {
  158. if(typeof needle == 'string' || typeof needle == 'number') {
  159. for(var i in haystack) {
  160. if(haystack[i] == needle) {
  161. return true;
  162. }
  163. }
  164. }
  165. return false;
  166. }
  167. var clipboardswfdata;
  168. function setcopy(text, alertmsg){
  169. if(is_ie) {
  170.     clipboardData.setData('Text', text);
  171. if(alertmsg) {
  172. alert(alertmsg);
  173. }
  174. } else {
  175. floatwin('open_clipboard', -1, 300, 110);
  176. $('floatwin_clipboard_title').innerHTML = '剪贴板';
  177. str = '<div style="text-decoration:underline;">点此复制到剪贴板</div>' +
  178. AC_FL_RunContent('id', 'clipboardswf', 'name', 'clipboardswf', 'devicefont', 'false', 'width', '100', 'height', '20', 'src', 'images/common/clipboard.swf', 'menu', 'false',  'allowScriptAccess', 'sameDomain', 'swLiveConnect', 'true', 'wmode', 'transparent', 'style' , 'margin-top:-20px');
  179. $('floatwin_clipboard_content').innerHTML = str;
  180. clipboardswfdata = text;
  181. }
  182. }
  183. function dconfirm(msg, script, width, height) {
  184. floatwin('open_confirm', -1, !width ? 300 : width, !height ? 110 : height);
  185. $('floatwin_confirm_title').innerHTML = '提示信息';
  186. $('floatwin_confirm_content').innerHTML = msg + '<br /><button onclick="' + script + ';floatwin('close_confirm')">&nbsp;是&nbsp;</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<button onclick="floatwin('close_confirm')">&nbsp;否&nbsp;</button>';
  187. }
  188. function dnotice(msg, script, width, height) {
  189. script = !script ? '' : script;
  190. floatwin('open_confirm', -1, !width ? 400 : width, !height ? 110 : height);
  191. $('floatwin_confirm_title').innerHTML = '提示信息';
  192. $('floatwin_confirm_content').innerHTML = msg + (script ? '<br /><button onclick="' + script + ';floatwin('close_confirm')">确定</button>' : '');
  193. }
  194. function setcopy_gettext() {
  195. window.document.clipboardswf.SetVariable('str', clipboardswfdata)
  196. }
  197. function isUndefined(variable) {
  198. return typeof variable == 'undefined' ? true : false;
  199. }
  200. function mb_strlen(str) {
  201. var len = 0;
  202. for(var i = 0; i < str.length; i++) {
  203. len += str.charCodeAt(i) < 0 || str.charCodeAt(i) > 255 ? (charset == 'utf-8' ? 3 : 2) : 1;
  204. }
  205. return len;
  206. }
  207. function mb_cutstr(str, maxlen, dot) {
  208. var len = 0;
  209. var ret = '';
  210. var dot = !dot ? '...' : '';
  211. maxlen = maxlen - dot.length;
  212. for(var i = 0; i < str.length; i++) {
  213. len += str.charCodeAt(i) < 0 || str.charCodeAt(i) > 255 ? (charset == 'utf-8' ? 3 : 2) : 1;
  214. if(len > maxlen) {
  215. ret += dot;
  216. break;
  217. }
  218. ret += str.substr(i, 1);
  219. }
  220. return ret;
  221. }
  222. function setcookie(cookieName, cookieValue, seconds, path, domain, secure) {
  223. var expires = new Date();
  224. expires.setTime(expires.getTime() + seconds * 1000);
  225. domain = !domain ? cookiedomain : domain;
  226. path = !path ? cookiepath : path;
  227. document.cookie = escape(cookieName) + '=' + escape(cookieValue)
  228. + (expires ? '; expires=' + expires.toGMTString() : '')
  229. + (path ? '; path=' + path : forumpath)
  230. + (domain ? '; domain=' + domain : '')
  231. + (secure ? '; secure' : '');
  232. }
  233. function strlen(str) {
  234. return (is_ie && str.indexOf('n') != -1) ? str.replace(/r?n/g, '_').length : str.length;
  235. }
  236. function updatestring(str1, str2, clear) {
  237. str2 = '_' + str2 + '_';
  238. return clear ? str1.replace(str2, '') : (str1.indexOf(str2) == -1 ? str1 + str2 : str1);
  239. }
  240. function toggle_collapse(objname, noimg, complex, lang) {
  241. var obj = $(objname);
  242. if(obj) {
  243. obj.style.display = obj.style.display == '' ? 'none' : '';
  244. var collapsed = getcookie('discuz_collapse');
  245. collapsed = updatestring(collapsed, objname, !obj.style.display);
  246. setcookie('discuz_collapse', collapsed, (collapsed ? 2592000 : -2592000));
  247. }
  248. if(!noimg) {
  249. var img = $(objname + '_img');
  250. if(img.tagName != 'IMG') {
  251. if(img.className.indexOf('_yes') == -1) {
  252. img.className = img.className.replace(/_no/, '_yes');
  253. if(lang) {
  254. img.innerHTML = lang[0];
  255. }
  256. } else {
  257. img.className = img.className.replace(/_yes/, '_no');
  258. if(lang) {
  259. img.innerHTML = lang[1];
  260. }
  261. }
  262. } else {
  263. img.src = img.src.indexOf('_yes.gif') == -1 ? img.src.replace(/_no.gif/, '_yes.gif') : img.src.replace(/_yes.gif/, '_no.gif');
  264. }
  265. img.blur();
  266. }
  267. if(complex) {
  268. var objc = $(objname + '_c');
  269. objc.className = objc.className == 'c_header' ? 'c_header closenode' : 'c_header';
  270. }
  271. }
  272. function sidebar_collapse(lang) {
  273. if(lang[0]) {
  274. toggle_collapse('sidebar', null, null, lang);
  275. $('wrap').className = $('wrap').className == 'wrap with_side s_clear' ? 'wrap s_clear' : 'wrap with_side s_clear';
  276. } else {
  277. var collapsed = getcookie('discuz_collapse');
  278. collapsed = updatestring(collapsed, 'sidebar', 1);
  279. setcookie('discuz_collapse', collapsed, (collapsed ? 2592000 : -2592000));
  280. location.reload();
  281. }
  282. }
  283. function trim(str) {
  284. return (str + '').replace(/(s+)$/g, '').replace(/^s+/g, '');
  285. }
  286. function _attachEvent(obj, evt, func, eventobj) {
  287. eventobj = !eventobj ? obj : eventobj;
  288. if(obj.addEventListener) {
  289. obj.addEventListener(evt, func, false);
  290. } else if(eventobj.attachEvent) {
  291. obj.attachEvent("on" + evt, func);
  292. }
  293. }
  294. var cssloaded= new Array();
  295. function loadcss(cssname) {
  296. if(!cssloaded[cssname]) {
  297. css = document.createElement('link');
  298. css.type = 'text/css';
  299. css.rel = 'stylesheet';
  300. css.href = 'forumdata/cache/style_' + STYLEID + '_' + cssname + '.css?' + VERHASH;
  301. var headNode = document.getElementsByTagName("head")[0];
  302. headNode.appendChild(css);
  303. cssloaded[cssname] = 1;
  304. }
  305. }
  306. var jsmenu = new Array();
  307. var ctrlobjclassName;
  308. jsmenu['active'] = new Array();
  309. jsmenu['timer'] = new Array();
  310. jsmenu['iframe'] = new Array();
  311. var JSMENU = [];
  312. JSMENU['active'] = [];
  313. JSMENU['timer'] = [];
  314. JSMENU['drag'] = [];
  315. JSMENU['layer'] = 0;
  316. JSMENU['zIndex'] = {'win':200,'menu':300,'prompt':400,'dialog':500};
  317. JSMENU['float'] = '';
  318. function initCtrl(ctrlobj, click, duration, timeout, layer) {
  319. if(ctrlobj && !ctrlobj.initialized) {
  320. ctrlobj.initialized = true;
  321. ctrlobj.unselectable = true;
  322. ctrlobj.outfunc = typeof ctrlobj.onmouseout == 'function' ? ctrlobj.onmouseout : null;
  323. ctrlobj.onmouseout = function() {
  324. if(this.outfunc) this.outfunc();
  325. if(duration < 3 && !jsmenu['timer'][ctrlobj.id]) jsmenu['timer'][ctrlobj.id] = setTimeout('hideMenu(' + layer + ')', timeout);
  326. }
  327. ctrlobj.overfunc = typeof ctrlobj.onmouseover == 'function' ? ctrlobj.onmouseover : null;
  328. ctrlobj.onmouseover = function(e) {
  329. doane(e);
  330. if(this.overfunc) this.overfunc();
  331. if(click) {
  332. clearTimeout(jsmenu['timer'][this.id]);
  333. jsmenu['timer'][this.id] = null;
  334. } else {
  335. for(var id in jsmenu['timer']) {
  336. if(jsmenu['timer'][id]) {
  337. clearTimeout(jsmenu['timer'][id]);
  338. jsmenu['timer'][id] = null;
  339. }
  340. }
  341. }
  342. }
  343. }
  344. }
  345. function initMenu(ctrlid, menuobj, duration, timeout, layer, drag) {
  346. if(menuobj && !menuobj.initialized) {
  347. menuobj.initialized = true;
  348. menuobj.ctrlkey = ctrlid;
  349. menuobj.onclick = ebygum;
  350. menuobj.style.position = 'absolute';
  351. if(duration < 3) {
  352. if(duration > 1) {
  353. menuobj.onmouseover = function() {
  354. clearTimeout(jsmenu['timer'][ctrlid]);
  355. jsmenu['timer'][ctrlid] = null;
  356. }
  357. }
  358. if(duration != 1) {
  359. menuobj.onmouseout = function() {
  360. jsmenu['timer'][ctrlid] = setTimeout('hideMenu(' + layer + ')', timeout);
  361. }
  362. }
  363. }
  364. menuobj.style.zIndex = 999 + layer;
  365. if (ctrlid.indexOf("calendarexp") != -1)
  366.     menuobj.style.zIndex = 10003;
  367. if(drag) {
  368. menuobj.onmousedown = function(event) {try{menudrag(menuobj, event, 1);}catch(e){}};
  369. menuobj.onmousemove = function(event) {try{menudrag(menuobj, event, 2);}catch(e){}};
  370. menuobj.onmouseup = function(event) {try{menudrag(menuobj, event, 3);}catch(e){}};
  371. }
  372. }
  373. }
  374. var menudragstart = new Array();
  375. function menudrag(menuobj, e, op) {
  376. if(op == 1) {
  377. if(in_array(is_ie ? event.srcElement.tagName : e.target.tagName, ['TEXTAREA', 'INPUT', 'BUTTON', 'SELECT'])) {
  378. return;
  379. }
  380. menudragstart = is_ie ? [event.clientX, event.clientY] : [e.clientX, e.clientY];
  381. menudragstart[2] = parseInt(menuobj.style.left);
  382. menudragstart[3] = parseInt(menuobj.style.top);
  383. doane(e);
  384. } else if(op == 2 && menudragstart[0]) {
  385. var menudragnow = is_ie ? [event.clientX, event.clientY] : [e.clientX, e.clientY];
  386. menuobj.style.left = (menudragstart[2] + menudragnow[0] - menudragstart[0]) + 'px';
  387. menuobj.style.top = (menudragstart[3] + menudragnow[1] - menudragstart[1]) + 'px';
  388. doane(e);
  389. } else if(op == 3) {
  390. menudragstart = [];
  391. doane(e);
  392. }
  393. }
  394. function showMenu(ctrlid, click, offset, duration, timeout, layer, showid, maxh, drag) {
  395. var ctrlobj = $(ctrlid);
  396. if(!ctrlobj) return;
  397. if(isUndefined(click)) click = false;
  398. if(isUndefined(offset)) offset = 0;
  399. if(isUndefined(duration)) duration = 2;
  400. if(isUndefined(timeout)) timeout = 250;
  401. if(isUndefined(layer)) layer = 0;
  402. if(isUndefined(showid)) showid = ctrlid;
  403. var showobj = $(showid);
  404. var menuobj = $(showid + '_menu');
  405. if(!showobj|| !menuobj) return;
  406. if(isUndefined(maxh)) maxh = 400;
  407. if(isUndefined(drag)) drag = false;
  408. if(click && jsmenu['active'][layer] == menuobj) {
  409. hideMenu(layer);
  410. return;
  411. } else {
  412. hideMenu(layer);
  413. }
  414. var len = jsmenu['timer'].length;
  415. if(len > 0) {
  416. for(var i=0; i<len; i++) {
  417. if(jsmenu['timer'][i]) clearTimeout(jsmenu['timer'][i]);
  418. }
  419. }
  420. initCtrl(ctrlobj, click, duration, timeout, layer);
  421. ctrlobjclassName = ctrlobj.className;
  422. ctrlobj.className += ' hover';
  423. initMenu(ctrlid, menuobj, duration, timeout, layer, drag);
  424. menuobj.style.display = '';
  425. if(!is_opera) {
  426. menuobj.style.clip = 'rect(auto, auto, auto, auto)';
  427. }
  428. setMenuPosition(showid, offset);
  429. if(maxh && menuobj.scrollHeight > maxh) {
  430. menuobj.style.height = maxh + 'px';
  431. if(is_opera) {
  432. menuobj.style.overflow = 'auto';
  433. } else {
  434. menuobj.style.overflowY = 'auto';
  435. }
  436. }
  437. if(!duration) {
  438. setTimeout('hideMenu(' + layer + ')', timeout);
  439. }
  440. jsmenu['active'][layer] = menuobj;
  441. }
  442. function setMenuPosition(showid, offset) {
  443. var showobj = $(showid);
  444. var menuobj = $(showid + '_menu');
  445. if(isUndefined(offset)) offset = 0;
  446. if(showobj) {
  447. showobj.pos = fetchOffset(showobj);
  448. showobj.X = showobj.pos['left'];
  449. showobj.Y = showobj.pos['top'];
  450. if($(InFloat) != null) {
  451. var InFloate = InFloat.split('_');
  452. if(!floatwinhandle[InFloate[1] + '_1']) {
  453. floatwinnojspos = fetchOffset($('floatwinnojs'));
  454. floatwinhandle[InFloate[1] + '_1'] = floatwinnojspos['left'];
  455. floatwinhandle[InFloate[1] + '_2'] = floatwinnojspos['top'];
  456. }
  457. showobj.X = showobj.X - $(InFloat).scrollLeft - parseInt(floatwinhandle[InFloate[1] + '_1']);
  458. showobj.Y = showobj.Y - $(InFloat).scrollTop - parseInt(floatwinhandle[InFloate[1] + '_2']);
  459. InFloat = '';
  460. }
  461. showobj.w = showobj.offsetWidth;
  462. showobj.h = showobj.offsetHeight;
  463. menuobj.w = menuobj.offsetWidth;
  464. menuobj.h = menuobj.offsetHeight;
  465. if(offset < 3) {
  466. menuobj.style.left = (showobj.X + menuobj.w > document.body.clientWidth) && (showobj.X + showobj.w - menuobj.w >= 0) ? showobj.X + showobj.w - menuobj.w + 'px' : showobj.X + 'px';
  467. menuobj.style.top = offset == 1 ? showobj.Y + 'px' : (offset == 2 || ((showobj.Y + showobj.h + menuobj.h > document.documentElement.scrollTop + document.documentElement.clientHeight) && (showobj.Y - menuobj.h >= 0)) ? (showobj.Y - menuobj.h) + 'px' : showobj.Y + showobj.h + 'px');
  468. } else if(offset == 3) {
  469. menuobj.style.left = (document.body.clientWidth - menuobj.clientWidth) / 2 + document.body.scrollLeft + 'px';
  470. menuobj.style.top = (document.body.clientHeight - menuobj.clientHeight) / 2 + document.body.scrollTop + 'px';
  471. }
  472. if(menuobj.style.clip && !is_opera) {
  473. menuobj.style.clip = 'rect(auto, auto, auto, auto)';
  474. }
  475. }
  476. }
  477. function hideMenu(layer) {
  478. if(isUndefined(layer)) layer = 0;
  479. if(jsmenu['active'][layer]) {
  480. try {
  481. $(jsmenu['active'][layer].ctrlkey).className = ctrlobjclassName;
  482. } catch(e) {}
  483. clearTimeout(jsmenu['timer'][jsmenu['active'][layer].ctrlkey]);
  484. jsmenu['active'][layer].style.display = 'none';
  485. if(is_ie && is_ie < 7 && jsmenu['iframe'][layer]) {
  486. jsmenu['iframe'][layer].style.display = 'none';
  487. }
  488. jsmenu['active'][layer] = null;
  489. }
  490. }
  491. function fetchOffset(obj) {
  492. var left_offset = obj.offsetLeft;
  493. var top_offset = obj.offsetTop;
  494. while((obj = obj.offsetParent) != null) {
  495. left_offset += obj.offsetLeft;
  496. top_offset += obj.offsetTop;
  497. }
  498. return { 'left' : left_offset, 'top' : top_offset };
  499. }
  500. function ebygum(eventobj) {
  501. if(!eventobj || is_ie) {
  502. window.event.cancelBubble = true;
  503. return window.event;
  504. } else {
  505. if(eventobj.target.type == 'submit') {
  506. eventobj.target.form.submit();
  507. }
  508. eventobj.stopPropagation();
  509. return eventobj;
  510. }
  511. }
  512. function menuoption_onclick_function(e) {
  513. this.clickfunc();
  514. hideMenu();
  515. }
  516. function menuoption_onclick_link(e) {
  517. choose(e, this);
  518. }
  519. function menuoption_onmouseover(e) {
  520. this.className = 'popupmenu_highlight';
  521. }
  522. function menuoption_onmouseout(e) {
  523. this.className = 'popupmenu_option';
  524. }
  525. function choose(e, obj) {
  526. var links = obj.getElementsByTagName('a');
  527. if(links[0]) {
  528. if(is_ie) {
  529. links[0].click();
  530. window.event.cancelBubble = true;
  531. } else {
  532. if(e.shiftKey) {
  533. window.open(links[0].href);
  534. e.stopPropagation();
  535. e.preventDefault();
  536. } else {
  537. window.location = links[0].href;
  538. e.stopPropagation();
  539. e.preventDefault();
  540. }
  541. }
  542. hideMenu();
  543. }
  544. }
  545. var Ajaxs = new Array();
  546. var AjaxStacks = new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
  547. var attackevasive = isUndefined(attackevasive) ? 0 : attackevasive;
  548. function Ajax(recvType, waitId) {
  549. for(var stackId = 0; stackId < AjaxStacks.length && AjaxStacks[stackId] != 0; stackId++);
  550. AjaxStacks[stackId] = 1;
  551. var aj = new Object();
  552. aj.loading = '加载中...';//public
  553. aj.recvType = recvType ? recvType : 'XML';//public
  554. aj.waitId = waitId ? $(waitId) : null;//public
  555. aj.resultHandle = null;//private
  556. aj.sendString = '';//private
  557. aj.targetUrl = '';//private
  558. aj.stackId = 0;
  559. aj.stackId = stackId;
  560. aj.setLoading = function(loading) {
  561. if(typeof loading !== 'undefined' && loading !== null) aj.loading = loading;
  562. }
  563. aj.setRecvType = function(recvtype) {
  564. aj.recvType = recvtype;
  565. }
  566. aj.setWaitId = function(waitid) {
  567. aj.waitId = typeof waitid == 'object' ? waitid : $(waitid);
  568. }
  569. aj.createXMLHttpRequest = function() {
  570. var request = false;
  571. if(window.XMLHttpRequest) {
  572. request = new XMLHttpRequest();
  573. if(request.overrideMimeType) {
  574. request.overrideMimeType('text/xml');
  575. }
  576. } else if(window.ActiveXObject) {
  577. var versions = ['Microsoft.XMLHTTP', 'MSXML.XMLHTTP', 'Microsoft.XMLHTTP', 'Msxml2.XMLHTTP.7.0', 'Msxml2.XMLHTTP.6.0', 'Msxml2.XMLHTTP.5.0', 'Msxml2.XMLHTTP.4.0', 'MSXML2.XMLHTTP.3.0', 'MSXML2.XMLHTTP'];
  578. for(var i=0; i<versions.length; i++) {
  579. try {
  580. request = new ActiveXObject(versions[i]);
  581. if(request) {
  582. return request;
  583. }
  584. } catch(e) {}
  585. }
  586. }
  587. return request;
  588. }
  589. aj.XMLHttpRequest = aj.createXMLHttpRequest();
  590. aj.showLoading = function() {
  591. if(aj.waitId && (aj.XMLHttpRequest.readyState != 4 || aj.XMLHttpRequest.status != 200)) {
  592. aj.waitId.style.display = '';
  593. aj.waitId.innerHTML = '<span><img src="' + IMGDIR + '/loading.gif"> ' + aj.loading + '</span>';
  594. }
  595. }
  596. aj.processHandle = function() {
  597. if(aj.XMLHttpRequest.readyState == 4 && aj.XMLHttpRequest.status == 200) {
  598. for(k in Ajaxs) {
  599. if(Ajaxs[k] == aj.targetUrl) {
  600. Ajaxs[k] = null;
  601. }
  602. }
  603. if(aj.waitId) {
  604. aj.waitId.style.display = 'none';
  605. }
  606. if(aj.recvType == 'HTML') {
  607. aj.resultHandle(aj.XMLHttpRequest.responseText, aj);
  608. } else if(aj.recvType == 'XML') {
  609. if(aj.XMLHttpRequest.responseXML.lastChild) {
  610. aj.resultHandle(aj.XMLHttpRequest.responseXML.lastChild.firstChild.nodeValue, aj);
  611. } else {
  612. if(ajaxdebug) {
  613. var error = mb_cutstr(aj.XMLHttpRequest.responseText.replace(/r?n/g, '\n').replace(/"/g, '\"'), 200);
  614. aj.resultHandle('<root>ajaxerror<script type="text/javascript" reload="1">alert('Ajax Error: \n' + error + '');</script></root>', aj);
  615. }
  616. }
  617. }
  618. AjaxStacks[aj.stackId] = 0;
  619. }
  620. }
  621. aj.get = function(targetUrl, resultHandle) {
  622. setTimeout(function(){aj.showLoading()}, 250);
  623. if(in_array(targetUrl, Ajaxs)) {
  624. return false;
  625. } else {
  626. Ajaxs.push(targetUrl);
  627. }
  628. aj.targetUrl = targetUrl;
  629. aj.XMLHttpRequest.onreadystatechange = aj.processHandle;
  630. aj.resultHandle = resultHandle;
  631. var delay = attackevasive & 1 ? (aj.stackId + 1) * 1001 : 100;
  632. if(window.XMLHttpRequest) {
  633. setTimeout(function(){
  634. aj.XMLHttpRequest.open('GET', aj.targetUrl);
  635. aj.XMLHttpRequest.send(null);}, delay);
  636. } else {
  637. setTimeout(function(){
  638. aj.XMLHttpRequest.open("GET", targetUrl, true);
  639. aj.XMLHttpRequest.send();}, delay);
  640. }
  641. }
  642. aj.post = function(targetUrl, sendString, resultHandle) {
  643. setTimeout(function(){aj.showLoading()}, 250);
  644. if(in_array(targetUrl, Ajaxs)) {
  645. return false;
  646. } else {
  647. Ajaxs.push(targetUrl);
  648. }
  649. aj.targetUrl = targetUrl;
  650. aj.sendString = sendString;
  651. aj.XMLHttpRequest.onreadystatechange = aj.processHandle;
  652. aj.resultHandle = resultHandle;
  653. aj.XMLHttpRequest.open('POST', targetUrl);
  654. aj.XMLHttpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  655. aj.XMLHttpRequest.send(aj.sendString);
  656. }
  657. return aj;
  658. }
  659. function newfunction(func){
  660. var args = new Array();
  661. for(var i=1; i<arguments.length; i++) args.push(arguments[i]);
  662. return function(event){
  663. doane(event);
  664. window[func].apply(window, args);
  665. return false;
  666. }
  667. }
  668. function display(id) {
  669. $(id).style.display = $(id).style.display == '' ? 'none' : '';
  670. }
  671. function display_opacity(id, n) {
  672. if(!$(id)) {
  673. return;
  674. }
  675. if(n >= 0) {
  676. n -= 10;
  677. $(id).style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + n + ')';
  678. $(id).style.opacity = n / 100;
  679. setTimeout('display_opacity('' + id + '',' + n + ')', 50);
  680. } else {
  681. $(id).style.display = 'none';
  682. $(id).style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=100)';
  683. $(id).style.opacity = 1;
  684. }
  685. }
  686. var evalscripts = new Array();
  687. function evalscript(s) {
  688. if(s.indexOf('<script') == -1) return s;
  689. var p = /<script[^>]*?>([^x00]*?)</script>/ig;
  690. var arr = new Array();
  691. while(arr = p.exec(s)) {
  692. var p1 = /<script[^>]*?src="([^>]*?)"[^>]*?(reload="1")?(?:charset="([w-]+?)")?></script>/i;
  693. var arr1 = new Array();
  694. arr1 = p1.exec(arr[0]);
  695. if(arr1) {
  696. appendscript(arr1[1], '', arr1[2], arr1[3]);
  697. } else {
  698. p1 = /<script(.*?)>([^x00]+?)</script>/i;
  699. arr1 = p1.exec(arr[0]);
  700. appendscript('', arr1[2], arr1[1].indexOf('reload=') != -1);
  701. }
  702. }
  703. return s;
  704. }
  705. function appendscript(src, text, reload, charset) {
  706. var id = hash(src + text);
  707. if(!reload && in_array(id, evalscripts)) return;
  708. if(reload && $(id)) {
  709. $(id).parentNode.removeChild($(id));
  710. }
  711. evalscripts.push(id);
  712. var scriptNode = document.createElement("script");
  713. scriptNode.type = "text/javascript";
  714. scriptNode.id = id;
  715. scriptNode.charset = charset ? charset : (is_moz ? document.characterSet : document.charset);
  716. try {
  717. if(src) {
  718. scriptNode.src = src;
  719. } else if(text){
  720. scriptNode.text = text;
  721. }
  722. $('append_parent').appendChild(scriptNode);
  723. } catch(e) {}
  724. }
  725. function stripscript(s) {
  726. return s.replace(/<script.*?>.*?</script>/ig, '');
  727. }
  728. function ajaxupdateevents(obj, tagName) {
  729. tagName = tagName ? tagName : 'A';
  730. var objs = obj.getElementsByTagName(tagName);
  731. for(k in objs) {
  732. var o = objs[k];
  733. ajaxupdateevent(o);
  734. }
  735. }
  736. function ajaxupdateevent(o) {
  737. if(typeof o == 'object' && o.getAttribute) {
  738. if(o.getAttribute('ajaxtarget')) {
  739. if(!o.id) o.id = Math.random();
  740. var ajaxevent = o.getAttribute('ajaxevent') ? o.getAttribute('ajaxevent') : 'click';
  741. var ajaxurl = o.getAttribute('ajaxurl') ? o.getAttribute('ajaxurl') : o.href;
  742. _attachEvent(o, ajaxevent, newfunction('ajaxget', ajaxurl, o.getAttribute('ajaxtarget'), o.getAttribute('ajaxwaitid'), o.getAttribute('ajaxloading'), o.getAttribute('ajaxdisplay')));
  743. if(o.getAttribute('ajaxfunc')) {
  744. o.getAttribute('ajaxfunc').match(/(w+)((.+?))/);
  745. _attachEvent(o, ajaxevent, newfunction(RegExp.$1, RegExp.$2));
  746. }
  747. }
  748. }
  749. }
  750. /*
  751.  *@ url: 需求请求的 url
  752.  *@ id : 显示的 id
  753.  *@ waitid: 等待的 id,默认为显示的 id,如果 waitid 为空字符串,则不显示 loading..., 如果为 null,则在 showid 区域显示
  754.  *@ linkid: 是哪个链接触发的该 ajax 请求,该对象的属性(如 ajaxdisplay)保存了一些 ajax 请求过程需要的数据。
  755. */
  756. function ajaxget(url, showid, waitid, loading, display, recall) {
  757. waitid = typeof waitid == 'undefined' || waitid === null ? showid : waitid;
  758. var x = new Ajax();
  759. x.setLoading(loading);
  760. x.setWaitId(waitid);
  761. x.display = typeof display == 'undefined' || display == null ? '' : display;
  762. x.showId = $(showid);
  763. if(x.showId) x.showId.orgdisplay = typeof x.showId.orgdisplay === 'undefined' ? x.showId.style.display : x.showId.orgdisplay;
  764. if(url.substr(strlen(url) - 1) == '#') {
  765. url = url.substr(0, strlen(url) - 1);
  766. x.autogoto = 1;
  767. }
  768. var url = url + '&inajax=1&ajaxtarget=' + showid;
  769. x.get(url, function(s, x) {
  770. evaled = false;
  771. if(s.indexOf('ajaxerror') != -1) {
  772. evalscript(s);
  773. evaled = true;
  774. }
  775. if(!evaled && (typeof ajaxerror == 'undefined' || !ajaxerror)) {
  776. if(x.showId) {
  777. x.showId.style.display = x.showId.orgdisplay;
  778. x.showId.style.display = x.display;
  779. x.showId.orgdisplay = x.showId.style.display;
  780. ajaxinnerhtml(x.showId, s);
  781. ajaxupdateevents(x.showId);
  782. if(x.autogoto) scroll(0, x.showId.offsetTop);
  783. }
  784. }
  785. if(!evaled)evalscript(s);
  786. ajaxerror = null;
  787. if(recall) {eval(recall);}
  788. });
  789. }
  790. var ajaxpostHandle = 0;
  791. function ajaxpost(formid, showid, waitid, showidclass, submitbtn) {
  792. showloading();
  793. var waitid = typeof waitid == 'undefined' || waitid === null ? showid : (waitid !== '' ? waitid : '');
  794. var showidclass = !showidclass ? '' : showidclass;
  795. if(ajaxpostHandle != 0) {
  796. return false;
  797. }
  798. var ajaxframeid = 'ajaxframe';
  799. var ajaxframe = $(ajaxframeid);
  800. if(ajaxframe == null) {
  801. if (is_ie && !is_opera) {
  802. ajaxframe = document.createElement("<iframe name='" + ajaxframeid + "' id='" + ajaxframeid + "'></iframe>");
  803. } else {
  804. ajaxframe = document.createElement("iframe");
  805. ajaxframe.name = ajaxframeid;
  806. ajaxframe.id = ajaxframeid;
  807. }
  808. ajaxframe.style.display = 'none';
  809. $('append_parent').appendChild(ajaxframe);
  810. }
  811. $(formid).target = ajaxframeid;
  812. ajaxpostHandle = [showid, ajaxframeid, formid, $(formid).target, showidclass, submitbtn];
  813. if(ajaxframe.attachEvent) {
  814. ajaxframe.detachEvent ('onload', ajaxpost_load);
  815. ajaxframe.attachEvent('onload', ajaxpost_load);
  816. } else {
  817. document.removeEventListener('load', ajaxpost_load, true);
  818. ajaxframe.addEventListener('load', ajaxpost_load, false);
  819. }
  820. $(formid).action += '&inajax=1';
  821. $(formid).submit();
  822. return false;
  823. }
  824. function ajaxpost_load() {
  825. showloading('none');
  826. var s = '';
  827. try
  828. {
  829. if(is_ie) {
  830. s = $(ajaxpostHandle[1]).contentWindow.document.XMLDocument.text;
  831. } else {
  832. s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.nodeValue;
  833. }
  834. } catch(e) {
  835. if(ajaxdebug) {
  836. var error = mb_cutstr($(ajaxpostHandle[1]).contentWindow.document.body.innerText.replace(/r?n/g, '\n').replace(/"/g, '\"'), 200);
  837. s = '<root>ajaxerror<script type="text/javascript" reload="1">alert('Ajax Error: \n' + error + '');</script></root>';
  838. }
  839. }
  840. evaled = false;
  841. if(s != '' && s.indexOf('ajaxerror') != -1) {
  842. evalscript(s);
  843. evaled = true;
  844. }
  845. if(ajaxpostHandle[4]) {
  846. $(ajaxpostHandle[0]).className = ajaxpostHandle[4];
  847. if(ajaxpostHandle[5]) {
  848. ajaxpostHandle[5].disabled = false;
  849. }
  850. }
  851. if(!evaled && (typeof ajaxerror == 'undefined' || !ajaxerror)) {
  852. ajaxinnerhtml($(ajaxpostHandle[0]), s);
  853. if(!evaled)evalscript(s);
  854. setMenuPosition($(ajaxpostHandle[0]).ctrlid, 0);
  855. setTimeout("hideMenu()", 3000);
  856. }
  857. ajaxerror = null;
  858. if($(ajaxpostHandle[2])) {
  859. $(ajaxpostHandle[2]).target = ajaxpostHandle[3];
  860. }
  861. ajaxpostHandle = 0;
  862. }
  863. function ajaxmenu(e, ctrlid, timeout, func, cache, duration, ismenu, divclass, optionclass) {
  864. showloading();
  865. if(jsmenu['active'][0] && jsmenu['active'][0].ctrlkey == ctrlid) {
  866. hideMenu();
  867. doane(e);
  868. return;
  869. } else if(is_ie && is_ie < 7 && document.readyState.toLowerCase() != 'complete') {
  870. return;
  871. }
  872. if(isUndefined(timeout)) timeout = 3000;
  873. if(isUndefined(func)) func = '';
  874. if(isUndefined(cache)) cache = 1;
  875. if(isUndefined(divclass)) divclass = 'popupmenu_popup';
  876. if(isUndefined(optionclass)) optionclass = 'popupmenu_option';
  877. if(isUndefined(ismenu)) ismenu = 1;
  878. if(isUndefined(duration)) duration = timeout > 0 ? 0 : 3;
  879. var div = $(ctrlid + '_menu');
  880. if(cache && div) {
  881. showMenu(ctrlid, e.type == 'click', 0, duration, timeout, 0, ctrlid, 400, 1);
  882. if(func) setTimeout(func + '(' + ctrlid + ')', timeout);
  883. doane(e);
  884. } else {
  885. if(!div) {
  886. div = document.createElement('div');
  887. div.ctrlid = ctrlid;
  888. div.id = ctrlid + '_menu';
  889. div.style.display = 'none';
  890. div.className = divclass;
  891. $('append_parent').appendChild(div);
  892. }
  893. var x = new Ajax();
  894. var href = !isUndefined($(ctrlid).href) ? $(ctrlid).href : $(ctrlid).attributes['href'].value;
  895. x.div = div;
  896. x.etype = e.type;
  897. x.optionclass = optionclass;
  898. x.duration = duration;
  899. x.timeout = timeout;
  900. x.get(href + '&inajax=1&ajaxmenuid='+ctrlid+'_menu', function(s) {
  901. evaled = false;
  902. if(s.indexOf('ajaxerror') != -1) {
  903. evalscript(s);
  904. evaled = true;
  905. if(!cache && duration != 3 && x.div.id) setTimeout('$("append_parent").removeChild($('' + x.div.id + ''))', timeout);
  906. }
  907. if(!evaled && (typeof ajaxerror == 'undefined' || !ajaxerror)) {
  908. if(x.div) x.div.innerHTML = '<div class="' + x.optionclass + '">' + s + '</div>';
  909. showMenu(ctrlid, x.etype == 'click', 0, x.duration, x.timeout, 0, ctrlid, 400, 1);
  910. if(func) setTimeout(func + '("' + ctrlid + '")', x.timeout);
  911. }
  912. if(!evaled) evalscript(s);
  913. ajaxerror = null;
  914. showloading('none');
  915. });
  916. doane(e);
  917. }
  918. }
  919. //得到一个定长的hash值, 依赖于 stringxor()
  920. function hash(string, length) {
  921. var length = length ? length : 32;
  922. var start = 0;
  923. var i = 0;
  924. var result = '';
  925. filllen = length - string.length % length;
  926. for(i = 0; i < filllen; i++){
  927. string += "0";
  928. }
  929. while(start < string.length) {
  930. result = stringxor(result, string.substr(start, length));
  931. start += length;
  932. }
  933. return result;
  934. }
  935. function stringxor(s1, s2) {
  936. var s = '';
  937. var hash = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  938. var max = Math.max(s1.length, s2.length);
  939. for(var i=0; i<max; i++) {
  940. var k = s1.charCodeAt(i) ^ s2.charCodeAt(i);
  941. s += hash.charAt(k % 52);
  942. }
  943. return s;
  944. }
  945. function showloading(display, waiting) {
  946. var display = display ? display : 'block';
  947. var waiting = waiting ? waiting : '页面加载中...';
  948. $('ajaxwaitid').innerHTML = waiting;
  949. $('ajaxwaitid').style.display = display;
  950. }
  951. /*
  952. function ajaxinnerhtml(showid, s) {
  953.     if (showid.tagName != 'TBODY')
  954.     {
  955.         if (showid.tagName == "EM" && s.indexOf("script") != -1)
  956.         {
  957.             showid.className = "";
  958.             showid.innerHTML += s;
  959.         }
  960.         else
  961.             showid.innerHTML = s;
  962. } else {
  963. while(showid.firstChild) {
  964. showid.firstChild.parentNode.removeChild(showid.firstChild);
  965. }
  966. var div1 = document.createElement('DIV');
  967. div1.id = showid.id+'_div';
  968. div1.innerHTML = '<table><tbody id="'+showid.id+'_tbody">'+s+'</tbody></table>';
  969. $('append_parent').appendChild(div1);
  970. var trs = div1.getElementsByTagName('TR');
  971. var l = trs.length;
  972. for(var i=0; i<l; i++) {
  973. showid.appendChild(trs[0]);
  974. }
  975. var inputs = div1.getElementsByTagName('INPUT');
  976. var l = inputs.length;
  977. for(var i=0; i<l; i++) {
  978. showid.appendChild(inputs[0]);
  979. }
  980. div1.parentNode.removeChild(div1);
  981. }
  982. }
  983. */
  984. function ajaxinnerhtml(showid, s) {
  985. if(showid.tagName != 'TBODY') {
  986. showid.innerHTML = s;
  987. } else {
  988. while(showid.firstChild) {
  989. showid.firstChild.parentNode.removeChild(showid.firstChild);
  990. }
  991. var div1 = document.createElement('DIV');
  992. div1.id = showid.id+'_div';
  993. div1.innerHTML = '<table><tbody id="'+showid.id+'_tbody">'+s+'</tbody></table>';
  994. $('append_parent').appendChild(div1);
  995. var trs = div1.getElementsByTagName('TR');
  996. var l = trs.length;
  997. for(var i=0; i<l; i++) {
  998. showid.appendChild(trs[0]);
  999. }
  1000. var inputs = div1.getElementsByTagName('INPUT');
  1001. var l = inputs.length;
  1002. for(var i=0; i<l; i++) {
  1003. showid.appendChild(inputs[0]);
  1004. }
  1005. div1.parentNode.removeChild(div1);
  1006. }
  1007. }
  1008. function AC_GetArgs(args, classid, mimeType) {
  1009. var ret = new Object();
  1010. ret.embedAttrs = new Object();
  1011. ret.params = new Object();
  1012. ret.objAttrs = new Object();
  1013. for (var i = 0; i < args.length; i = i + 2){
  1014. var currArg = args[i].toLowerCase();
  1015. switch (currArg){
  1016. case "classid":break;
  1017. case "pluginspage":ret.embedAttrs[args[i]] = 'http://www.macromedia.com/go/getflashplayer';break;
  1018. case "src":ret.embedAttrs[args[i]] = args[i+1];ret.params["movie"] = args[i+1];break;
  1019. case "codebase":ret.objAttrs[args[i]] = 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0';break;
  1020. case "onafterupdate":case "onbeforeupdate":case "onblur":case "oncellchange":case "onclick":case "ondblclick":case "ondrag":case "ondragend":
  1021. case "ondragenter":case "ondragleave":case "ondragover":case "ondrop":case "onfinish":case "onfocus":case "onhelp":case "onmousedown":
  1022. case "onmouseup":case "onmouseover":case "onmousemove":case "onmouseout":case "onkeypress":case "onkeydown":case "onkeyup":case "onload":
  1023. case "onlosecapture":case "onpropertychange":case "onreadystatechange":case "onrowsdelete":case "onrowenter":case "onrowexit":case "onrowsinserted":case "onstart":
  1024. case "onscroll":case "onbeforeeditfocus":case "onactivate":case "onbeforedeactivate":case "ondeactivate":case "type":
  1025. case "id":ret.objAttrs[args[i]] = args[i+1];break;
  1026. case "width":case "height":case "align":case "vspace": case "hspace":case "class":case "title":case "accesskey":case "name":
  1027. case "tabindex":ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];break;
  1028. default:ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
  1029. }
  1030. }
  1031. ret.objAttrs["classid"] = classid;
  1032. if(mimeType) {
  1033. ret.embedAttrs["type"] = mimeType;
  1034. }
  1035. return ret;
  1036. }
  1037. function AC_FL_RunContent() {
  1038. var ret = AC_GetArgs(arguments, "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000", "application/x-shockwave-flash");
  1039. var str = '';
  1040. if(is_ie && !is_opera) {
  1041. str += '<object ';
  1042. for (var i in ret.objAttrs) {
  1043. str += i + '="' + ret.objAttrs[i] + '" ';
  1044. }
  1045. str += '>';
  1046. for (var i in ret.params) {
  1047. str += '<param name="' + i + '" value="' + ret.params[i] + '" /> ';
  1048. }
  1049. str += '</object>';
  1050. } else {
  1051. str += '<embed ';
  1052. for (var i in ret.embedAttrs) {
  1053. str += i + '="' + ret.embedAttrs[i] + '" ';
  1054. }
  1055. str += '></embed>';
  1056. }
  1057. return str;
  1058. }
  1059. //PageScroll
  1060. function pagescroll_class(obj, pagewidth, pageheight) {
  1061. this.ctrlobj = $(obj);
  1062. this.speed = 2;
  1063. this.pagewidth = pagewidth;
  1064. this.times = 1;
  1065. this.pageheight = pageheight;
  1066. this.running = 0;
  1067. this.defaultleft = 0;
  1068. this.defaulttop = 0;
  1069. this.script = '';
  1070. this.start = function(times) {
  1071. if(this.running) return 0;
  1072. this.times = !times ? 1 : times;
  1073. this.scrollpx = 0;
  1074. return this.running = 1;
  1075. }
  1076. this.left = function(times, script) {
  1077. if(!this.start(times)) return;
  1078. this.stepv = -(this.step = this.pagewidth * this.times / this.speed);
  1079. this.script = !script ? '' : script;
  1080. setTimeout('pagescroll.h()', 1);
  1081. }
  1082. this.right = function(times, script) {
  1083. if(!this.start(times)) return;
  1084. this.stepv = this.step = this.pagewidth * this.times / this.speed;
  1085. this.script = !script ? '' : script;
  1086. setTimeout('pagescroll.h()', 1);
  1087. }
  1088. this.up = function(times, script) {
  1089. if(!this.start(times)) return;
  1090. this.stepv = -(this.step = this.pageheight * this.times / this.speed);
  1091. this.script = !script ? '' : script;
  1092. setTimeout('pagescroll.v()', 1);
  1093. }
  1094. this.down = function(times, script) {
  1095. if(!this.start(times)) return;
  1096. this.stepv = this.step = this.pageheight * this.times / this.speed;
  1097. this.script = !script ? '' : script;
  1098. setTimeout('pagescroll.v()', 1);
  1099. }
  1100. this.h = function() {
  1101. if(this.scrollpx <= this.pagewidth * this.times) {
  1102. this.scrollpx += Math.abs(this.stepv);
  1103. patch = this.scrollpx > this.pagewidth * this.times ? this.scrollpx - this.pagewidth * this.times : 0;
  1104. patch = patch > 0 && this.stepv < 0 ? -patch : patch;
  1105. oldscrollLeft = this.ctrlobj.scrollLeft;
  1106. this.ctrlobj.scrollLeft = this.ctrlobj.scrollLeft + this.stepv - patch;
  1107. if(oldscrollLeft != this.ctrlobj.scrollLeft) {
  1108. setTimeout('pagescroll.h()', 1);
  1109. return;
  1110. }
  1111. }
  1112. if(this.script) {
  1113. eval(this.script);
  1114. }
  1115. this.running = 0;
  1116. }
  1117. this.v = function() {
  1118. if(this.scrollpx <= this.pageheight * this.times) {
  1119. this.scrollpx += Math.abs(this.stepv);
  1120. patch = this.scrollpx > this.pageheight * this.times ? this.scrollpx - this.pageheight * this.times : 0;
  1121. patch = patch > 0 && this.stepv < 0 ? -patch : patch;
  1122. oldscrollTop = this.ctrlobj.scrollTop;
  1123. this.ctrlobj.scrollTop = this.ctrlobj.scrollTop + this.stepv - patch;
  1124. if(oldscrollTop != this.ctrlobj.scrollTop) {
  1125. setTimeout('pagescroll.v()', 1);
  1126. return;
  1127. }
  1128. }
  1129. if(this.script) {
  1130. eval(this.script);
  1131. }
  1132. this.running = 0;
  1133. }
  1134. this.init = function() {
  1135. this.ctrlobj.scrollLeft = this.defaultleft;
  1136. this.ctrlobj.scrollTop = this.defaulttop;
  1137. }
  1138. }
  1139. //LiSelect
  1140. var selectopen = null;
  1141. var hiddencheckstatus = 0;
  1142. function loadselect(id, showinput, pageobj, pos, method) {
  1143. var obj = $(id);
  1144. var objname = $(id).name;
  1145. var objoffset = fetchOffset(obj);
  1146. objoffset['width'] = is_ie ? (obj.offsetWidth ? obj.offsetWidth : parseInt(obj.currentStyle.width)) : obj.offsetWidth;
  1147. objoffset['height'] = is_ie ? (obj.offsetHeight ? obj.offsetHeight : parseInt(obj.currentStyle.height)) : obj.offsetHeight;
  1148. pageobj = !pageobj ? '' : pageobj;
  1149. showinput = !showinput ? 0 : showinput;
  1150. pos = !pos ? 0 : 1;
  1151. method = !method ? 0 : 1;
  1152. var maxlength = 0;
  1153. var defaultopt = '', defaultv = '';
  1154. var lis = '<ul onfocus="loadselect_keyinit(event, 1)" onblur="loadselect_keyinit(event, 2)" class="newselect" id="' + objname + '_selectmenu" style="' + (!pos ? 'z-index:999;position: absolute; width: ' + objoffset['width'] + 'px;' : '') + 'display: none">';
  1155. for(var i = 0;i < obj.options.length;i++){
  1156. lis += '<li ' + (obj.options[i].selected ? 'class="current" ' : '') + 'k_id="' + id + '" k_value="' + obj.options[i].value + '" onclick="loadselect_liset('' + objname + '', ' + showinput + ', '' + id + '',' + (showinput ? 'this.innerHTML' : ''' + obj.options[i].value + ''') + ',this.innerHTML, ' + i + ')">' + obj.options[i].innerHTML + '</li>';
  1157. maxlength = obj.options[i].value.length > maxlength ? obj.options[i].value.length : maxlength;
  1158. if(obj.options[i].selected) {
  1159. defaultopt = obj.options[i].innerHTML;
  1160. defaultv = obj.options[i].value;
  1161. if($(objname)) {
  1162. $(objname).setAttribute('selecti', i);
  1163. }
  1164. }
  1165. }
  1166. lis += '</ul>';
  1167. if(showinput) {
  1168. inp = '<input autocomplete="off" class="newselect" id="' + objname + '_selectinput" onclick="loadselect_viewmenu(this, '' + objname + '', 0, '' + pageobj + '');doane(event)" onchange="loadselect_inputset('' + id + '', this.value);loadselect_viewmenu(this, '' + objname + '', 0, '' + pageobj + '')" value="' + defaultopt + '" style="width: ' + objoffset['width'] + 'px;height: ' + objoffset['height'] + 'px;" tabindex="1" />';
  1169. } else {
  1170. inp = '<a href="javascript:;" hidefocus="true" class="loadselect" id="' + objname + '_selectinput"' + (!obj.disabled ? ' onfocus="loadselect_keyinit(event, 1)" onblur="loadselect_keyinit(event, 2)" onmouseover="this.focus()" onmouseout="this.blur()" onkeyup="loadselect_key(this, event, '' + objname + '', '' + pageobj + '')" onclick="loadselect_viewmenu(this, '' + objname + '', 0, '' + pageobj + '');doane(event)"' : '') + ' tabindex="1">' + defaultopt + '</a>';
  1171. }
  1172. obj.options.length = 0;
  1173. if(defaultopt) {
  1174. obj.options[0]= showinput ? new Option('', defaultopt) : new Option('', defaultv);
  1175. }
  1176. obj.style.width = objoffset['width'] + 'px';
  1177. obj.style.display = 'none';
  1178. if(!method) {
  1179. obj.outerHTML += inp + lis;
  1180. } else {
  1181. if(showinput) {
  1182. var inpobj = document.createElement("input");
  1183. } else {
  1184. var inpobj = document.createElement("a");
  1185. }
  1186. obj.parentNode.appendChild(inpobj);
  1187. inpobj.outerHTML = inp;
  1188. var lisobj = document.createElement("ul");
  1189. obj.parentNode.appendChild(lisobj);
  1190. lisobj.outerHTML = lis;
  1191. }
  1192. }
  1193. function loadselect_keyinit(e, a) {
  1194. if(a == 1) {
  1195. if(document.attachEvent) {
  1196. document.body.attachEvent('onkeydown', loadselect_keyhandle);
  1197. } else {
  1198. document.body.addEventListener('keydown', loadselect_keyhandle, false);
  1199. }
  1200. } else {
  1201. if(document.attachEvent) {
  1202. document.body.detachEvent('onkeydown', loadselect_keyhandle);
  1203. } else {
  1204. document.body.removeEventListener('keydown', loadselect_keyhandle, false);
  1205. }
  1206. }
  1207. }
  1208. function loadselect_keyhandle(e) {
  1209. e = is_ie ? event : e;
  1210. if(e.keyCode == 40 || e.keyCode == 38) doane(e);
  1211. }
  1212. function loadselect_key(ctrlobj, e, objname, pageobj) {
  1213. value = e.keyCode;
  1214. if(value == 40 || value == 38) {
  1215. if($(objname + '_selectmenu').style.display == 'none') {
  1216. loadselect_viewmenu(ctrlobj, objname, 0, pageobj);
  1217. } else {
  1218. lis = $(objname + '_selectmenu').getElementsByTagName('LI');
  1219. selecti = $(objname).getAttribute('selecti');
  1220. lis[selecti].className = '';
  1221. if(value == 40) {
  1222. selecti = parseInt(selecti) + 1;
  1223. } else if(value == 38) {
  1224. selecti = parseInt(selecti) - 1;
  1225. }
  1226. if(selecti < 0) {
  1227. selecti = lis.length - 1
  1228. } else if(selecti > lis.length - 1) {
  1229. selecti = 0;
  1230. }
  1231. lis[selecti].className = 'current';
  1232. $(objname).setAttribute('selecti', selecti);
  1233. lis[selecti].parentNode.scrollTop = lis[selecti].offsetTop;
  1234. }
  1235. } else if(value == 13) {
  1236. lis = $(objname + '_selectmenu').getElementsByTagName('LI');
  1237. for(i = 0;i < lis.length;i++) {
  1238. if(lis[i].className == 'current') {
  1239. loadselect_liset(objname, 0, lis[i].getAttribute('k_id'), lis[i].getAttribute('k_value'), lis[i].innerHTML, i);
  1240. break;
  1241. }
  1242. }
  1243. }
  1244. }
  1245. function loadselect_viewmenu(ctrlobj, objname, hidden, pageobj) {
  1246. if(!selectopen) {
  1247. if(document.attachEvent) {
  1248. document.body.attachEvent('onclick', loadselect_hiddencheck);
  1249. } else {
  1250. document.body.addEventListener('click', loadselect_hiddencheck, false);
  1251. }
  1252. }
  1253. var hidden = !hidden ? 0 : 1;
  1254. if($(objname + '_selectmenu').style.display == '' || hidden) {
  1255. $(objname + '_selectmenu').style.display = 'none';
  1256. } else {
  1257. if($(selectopen)) {
  1258. $(selectopen).style.display = 'none';
  1259. }
  1260. var objoffset = fetchOffset(ctrlobj);
  1261. if(pageobj) {
  1262. var InFloate = pageobj.split('_');
  1263. objoffset['left'] -= $(pageobj).scrollLeft + parseInt(floatwinhandle[InFloate[1] + '_1']);
  1264. objoffset['top'] -= $(pageobj).scrollTop + parseInt(floatwinhandle[InFloate[1] + '_2']);
  1265. }
  1266. objoffset['height'] = ctrlobj.offsetHeight;
  1267. $(objname + '_selectmenu').style.display = '';
  1268. selectopen = objname + '_selectmenu';
  1269. }
  1270. hiddencheckstatus = 1;
  1271. }
  1272. function loadselect_hiddencheck() {
  1273. if(hiddencheckstatus) {
  1274. if($(selectopen)) {
  1275. $(selectopen).style.display = 'none';
  1276. }
  1277. hiddencheckstatus = 0;
  1278. }
  1279. }
  1280. function loadselect_liset(objname, showinput, obj, v, opt, selecti) {
  1281. var change = 1;
  1282. if(showinput) {
  1283. if($(objname + '_selectinput').value != opt) {
  1284. $(objname + '_selectinput').value = opt;
  1285. } else {
  1286. change = 0;
  1287. }
  1288. } else {
  1289. if($(objname + '_selectinput').innerHTML != opt) {
  1290. $(objname + '_selectinput').innerHTML = opt;
  1291. } else {
  1292. change = 0;
  1293. }
  1294. }
  1295. lis = $(objname + '_selectmenu').getElementsByTagName('LI');
  1296. lis[$(objname).getAttribute('selecti')].className = '';
  1297. lis[selecti].className = 'current';
  1298. $(objname).setAttribute('selecti', selecti);
  1299. $(objname + '_selectmenu').style.display='none';
  1300. if(change) {
  1301. obj = $(obj);
  1302. obj.options.length=0;
  1303. obj.options[0]=new Option('', v);
  1304. eval(obj.getAttribute('change'));
  1305. }
  1306. }
  1307. function loadselect_inputset(obj, v) {
  1308. obj = $(obj);
  1309. obj.options.length=0;
  1310. obj.options[0]=new Option('', v);
  1311. eval(obj.getAttribute('change'));
  1312. }
  1313. //DetectCapsLock
  1314. var detectobj;
  1315. function detectcapslock(e, obj) {
  1316. detectobj = obj;
  1317. valueCapsLock = e.keyCode ? e.keyCode : e.which;
  1318. valueShift = e.shiftKey ? e.shiftKey : (valueCapsLock == 16 ? true : false);
  1319. detectobj.className = (valueCapsLock >= 65 && valueCapsLock <= 90 && !valueShift || valueCapsLock >= 97 && valueCapsLock <= 122 && valueShift) ? 'capslock txt' : 'txt';
  1320. if(is_ie) {
  1321. event.srcElement.onblur = detectcapslock_cleardetectobj;
  1322. } else {
  1323. e.target.onblur = detectcapslock_cleardetectobj;
  1324. }
  1325. }
  1326. function detectcapslock_cleardetectobj() {
  1327. detectobj.className = 'txt';
  1328. }
  1329. //FloatWin
  1330. var hiddenobj = new Array();
  1331. var floatwinhandle = new Array();
  1332. var floatscripthandle = new Array();
  1333. var floattabs = new Array();
  1334. var floatwins = new Array();
  1335. var InFloat = '';
  1336. var floatwinreset = 0;
  1337. var floatwinopened = 0;
  1338. var STYLEID = '1';
  1339. var VERHASH = 'Pvt'
  1340. function floatwin(action, script, w, h, scrollpos) {
  1341. var floatonly = !floatonly ? 0 : 1;
  1342. var actione = action.split('_');
  1343. action = actione[0];
  1344. if(script && script != -1)
  1345.     script += script.indexOf("?") != -1 ? "&stamp=" + Math.random() : "?stamp=" + Math.random();
  1346. if((!allowfloatwin || allowfloatwin == 0) && action == 'open' && in_array(actione[1], ['register','login','newthread','reply','edit']) && w >= 600) {
  1347. location.href = script;
  1348. return;
  1349. }
  1350. var handlekey = actione[1];
  1351. var layerid = 'floatwin_' + handlekey;
  1352. if(is_ie) {
  1353. var objs = $('wrap').getElementsByTagName("OBJECT");
  1354. } else {
  1355. var objs = $('wrap').getElementsByTagName("EMBED");
  1356. }
  1357. if(action == 'open') {
  1358. loadcss('float');
  1359. floatwinhandle[handlekey + '_0'] = layerid;
  1360. if(!floatwinopened) {
  1361. $('wrap').onkeydown = floatwin_wrapkeyhandle;
  1362. for(i = 0;i < objs.length; i ++) {
  1363. if(objs[i].style.visibility != 'hidden') {
  1364. objs[i].setAttribute("oldvisibility", objs[i].style.visibility);
  1365. objs[i].style.visibility = 'hidden';
  1366. }
  1367. }
  1368. }
  1369. scrollpos = !scrollpos ? '' : 'floatwin_scroll('' + scrollpos + '');';
  1370. var clientWidth = document.body.clientWidth;
  1371. var clientHeight = document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight;
  1372. var scrollTop = document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop;
  1373. if(script && script != -1) {
  1374. if(script.lastIndexOf('/') != -1) {
  1375. script = script.substr(script.lastIndexOf('/') + 1);
  1376. }
  1377. var scriptfile = script.split('?');
  1378. scriptfile = scriptfile[0];
  1379. if(in_array(scriptfile,['posttopic.aspx','postreply.aspx','editpost.aspx']))
  1380. {
  1381. scriptfile='post.aspx';
  1382. }
  1383. if(floatwinreset || floatscripthandle[scriptfile] && floatscripthandle[scriptfile][0] != script) {
  1384. if(!isUndefined(floatscripthandle[scriptfile])) {
  1385. $('append_parent').removeChild($(floatscripthandle[scriptfile][1]));
  1386. $('append_parent').removeChild($(floatscripthandle[scriptfile][1] + '_mask'));
  1387. }
  1388. floatwinreset = 0;
  1389. }
  1390. floatscripthandle[scriptfile] = [script, layerid];
  1391. }
  1392. if(!$(layerid)) {
  1393. floattabs[layerid] = new Array();
  1394. div = document.createElement('div');
  1395. div.className = 'floatwin';
  1396. div.id = layerid;
  1397. div.style.width = w + 'px';
  1398. div.style.height = h + 'px';
  1399. div.style.left = floatwinhandle[handlekey + '_1'] = ((clientWidth - w) / 2) + 'px';
  1400. div.style.position = 'absolute';
  1401. div.style.zIndex = '10002';
  1402. div.onkeydown = floatwin_keyhandle;
  1403. $('append_parent').appendChild(div);
  1404. $(layerid).style.display = '';
  1405. $(layerid).style.top = floatwinhandle[handlekey + '_2'] = ((clientHeight - h) / 2 + scrollTop) + 'px';
  1406. $(layerid).innerHTML = '<div><h3 class="float_ctrl"><em><img src="' + IMGDIR + '/loading.gif"> 加载中...</em><span><a href="javascript:;" class="float_close" onclick="floatwinreset = 1;floatwin('close_' + handlekey + '');">&nbsp</a></span></h3></div>';
  1407. divmask = document.createElement('div');
  1408. divmask.className = 'floatwinmask';
  1409. divmask.id = layerid + '_mask';
  1410. divmask.style.width = (parseInt($(layerid).style.width) + 14) + 'px';
  1411. divmask.style.height = (parseInt($(layerid).style.height) + 14) + 'px';
  1412. divmask.style.left = (parseInt($(layerid).style.left) - 6) + 'px';
  1413. divmask.style.top = (parseInt($(layerid).style.top) - 6) + 'px';
  1414. divmask.style.position = 'absolute';
  1415. divmask.style.zIndex = '10001';
  1416. divmask.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=90,finishOpacity=100,style=0)';
  1417. divmask.style.opacity = 0.9;
  1418. $('append_parent').appendChild(divmask);
  1419. if(script && script != -1) {
  1420. script += (script.search(/?/) > 0 ? '&' : '?') + 'infloat=1&handlekey=' + handlekey;
  1421. try {
  1422. ajaxget(rooturl+script, layerid, '', '', '', scrollpos);
  1423. } catch(e) {
  1424. setTimeout("ajaxget('" + (rooturl+script) + "', '" + layerid + "', '', '', '', '" + scrollpos + "')", 1000);
  1425. }
  1426. } else if(script == -1) {
  1427. $(layerid).innerHTML = '<div><h3 class="float_ctrl"><em id="' + layerid + '_title"></em><span><a href="javascript:;" class="float_close" onclick="floatwinreset = 1;floatwin('close_' + handlekey + '');">&nbsp</a></span></h3></div><div id="' + layerid + '_content"></div>';
  1428. $(layerid).style.zIndex = '1099';
  1429. $(layerid + '_mask').style.zIndex = '1098';
  1430. }
  1431. } else {
  1432. $(layerid).style.width = w + 'px';
  1433. $(layerid).style.height = h + 'px';
  1434. $(layerid).style.display = '';
  1435. $(layerid).style.top = floatwinhandle[handlekey + '_2'] = ((clientHeight - h) / 2 + scrollTop) + 'px';
  1436. $(layerid + '_mask').style.width = (parseInt($(layerid).style.width) + 14) + 'px';
  1437. $(layerid + '_mask').style.height = (parseInt($(layerid).style.height) + 14) + 'px';
  1438. $(layerid + '_mask').style.display = '';
  1439. $(layerid + '_mask').style.top = (parseInt($(layerid).style.top) - 6) + 'px';
  1440. }
  1441. floatwins[floatwinopened] = handlekey;
  1442. floatwinopened++;
  1443. } else if(action == 'close' && floatwinhandle[handlekey + '_0']) {
  1444. floatwinopened--;
  1445. for(i = 0;i < floatwins.length; i++) {
  1446. if(handlekey == floatwins[i]) {
  1447. floatwins[i] = null;
  1448. }
  1449. }
  1450. if(!floatwinopened) {
  1451. for(i = 0;i < objs.length; i ++) {
  1452. if(objs[i].attributes['oldvisibility']) {
  1453. objs[i].style.visibility = objs[i].attributes['oldvisibility'].nodeValue;
  1454. objs[i].removeAttribute('oldvisibility');
  1455. }
  1456. }
  1457. $('wrap').onkeydown = null;
  1458. }
  1459. hiddenobj = new Array();
  1460. $(layerid + '_mask').style.display = 'none';
  1461. $(layerid).style.display = 'none';
  1462. } else if(action == 'size' && floatwinhandle[handlekey + '_0']) {
  1463. if(!floatwinhandle[handlekey + '_3']) {
  1464. var clientWidth = document.body.clientWidth;
  1465. var clientHeight = document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight;
  1466. var w = clientWidth > 800 ? clientWidth * 0.9 : 800;
  1467. var h = clientHeight * 0.9;
  1468. floatwinhandle[handlekey + '_3'] = $(layerid).style.left;
  1469. floatwinhandle[handlekey + '_4'] = $(layerid).style.top;
  1470. floatwinhandle[handlekey + '_5'] = $(layerid).style.width;
  1471. floatwinhandle[handlekey + '_6'] = $(layerid).style.height;
  1472. $(layerid).style.left = floatwinhandle[handlekey + '_1'] = ((clientWidth - w) / 2) + 'px';
  1473. $(layerid).style.top = floatwinhandle[handlekey + '_2'] = ((document.documentElement.clientHeight - h) / 2 + document.documentElement.scrollTop) + 'px';
  1474. $(layerid).style.width = w + 'px';
  1475. $(layerid).style.height = h + 'px';
  1476. } else {
  1477. $(layerid).style.left = floatwinhandle[handlekey + '_1'] = floatwinhandle[handlekey + '_3'];
  1478. $(layerid).style.top = floatwinhandle[handlekey + '_2'] = floatwinhandle[handlekey + '_4'];
  1479. $(layerid).style.width = floatwinhandle[handlekey + '_5'];
  1480. $(layerid).style.height = floatwinhandle[handlekey + '_6'];
  1481. floatwinhandle[handlekey + '_3'] = '';
  1482. }
  1483. $(layerid + '_mask').style.width = (parseInt($(layerid).style.width) + 14) + 'px';
  1484. $(layerid + '_mask').style.height = (parseInt($(layerid).style.height) + 14) + 'px';
  1485. $(layerid + '_mask').style.left = (parseInt($(layerid).style.left) - 6) + 'px';
  1486. $(layerid + '_mask').style.top = (parseInt($(layerid).style.top) - 6) + 'px';
  1487. }
  1488. }
  1489. function floatwin_scroll(pos) {
  1490. var pose = pos.split(',');
  1491. try {
  1492. pagescroll.defaultleft = pose[0];
  1493. pagescroll.defaulttop = pose[1];
  1494. pagescroll.init();
  1495. } catch(e) {}
  1496. }
  1497. function floatwin_wrapkeyhandle(e) {
  1498. e = is_ie ? event : e;
  1499. if(e.keyCode == 9) {
  1500. doane(e);
  1501. } else if(e.keyCode == 27) {
  1502. for(i = floatwins.length - 1;i >= 0; i--) {
  1503. floatwin('close_' + floatwins[i]);
  1504. }
  1505. }
  1506. }
  1507. function floatwin_keyhandle(e) {
  1508. e = is_ie ? event : e;
  1509. if(e.keyCode == 9) {
  1510. doane(e);
  1511. var obj = is_ie ? e.srcElement : e.target;
  1512. var srcobj = obj;
  1513. j = 0;
  1514. while(obj.className.indexOf('floatbox') == -1) {
  1515. obj = obj.parentNode;
  1516. }
  1517. obj.id = obj.id ? obj.id : 'floatbox_' + Math.random();
  1518. if(!floattabs[obj.id]) {
  1519. floattabs[obj.id] = new Array();
  1520. var alls = obj.getElementsByTagName("*");
  1521. for(i = 0;i < alls.length;i++) {
  1522. if(alls[i].getAttribute('tabindex') == 1) {
  1523. floattabs[obj.id][j] = alls[i];
  1524. j++;
  1525. }
  1526. }
  1527. }
  1528. if(floattabs[obj.id].length > 0) {
  1529. for(i = 0;i < floattabs[obj.id].length;i++) {
  1530. if(srcobj == floattabs[obj.id][i]) {
  1531. j = e.shiftKey ? i - 1 : i + 1;break;
  1532. }
  1533. }
  1534. if(j < 0) {
  1535. j = floattabs[obj.id].length - 1;
  1536. }
  1537. if(j > floattabs[obj.id].length - 1) {
  1538. j = 0;
  1539. }
  1540. do{
  1541. focusok = 1;
  1542. try{ floattabs[obj.id][j].focus(); } catch(e) {
  1543. focusok = 0;
  1544. }
  1545. if(!focusok) {
  1546. j = e.shiftKey ? j - 1 : j + 1;
  1547. if(j < 0) {
  1548. j = floattabs[obj.id].length - 1;
  1549. }
  1550. if(j > floattabs[obj.id].length - 1) {
  1551. j = 0;
  1552. }
  1553. }
  1554. } while(!focusok);
  1555. }
  1556. }
  1557. }
  1558. //ShowSelect
  1559. function showselect(obj, inpid, t, rettype) {
  1560. if(!obj.id) {
  1561. var t = !t ? 0 : t;
  1562. var rettype = !rettype ? 0 : rettype;
  1563. obj.id = 'calendarexp_' + Math.random();
  1564. div = document.createElement('div');
  1565. div.id = obj.id + '_menu';
  1566. div.style.display = 'none';
  1567. div.className = 'showselect_menu';
  1568. if($(InFloat) != null) {
  1569. $(InFloat).appendChild(div);
  1570. } else {
  1571. $('append_parent').appendChild(div);
  1572. }
  1573. s = '';
  1574. if(!t) {
  1575. s += showselect_row(inpid, '一天', 1, 0, rettype);
  1576. s += showselect_row(inpid, '一周', 7, 0, rettype);
  1577. s += showselect_row(inpid, '一个月', 30, 0, rettype);
  1578. s += showselect_row(inpid, '三个月', 90, 0, rettype);
  1579. s += showselect_row(inpid, '自定义', -2);
  1580. } else {
  1581. if($(t)) {
  1582. var lis = $(t).getElementsByTagName('LI');
  1583. for(i = 0;i < lis.length;i++) {
  1584. s += '<a href="javascript:;" onclick="$('' + inpid + '').value = this.innerHTML">' + lis[i].innerHTML + '</a><br />';
  1585. }
  1586. s += showselect_row(inpid, '自定义', -1);
  1587. } else {
  1588. s += '<a href="javascript:;" onclick="$('' + inpid + '').value = '0'">永久</a><br />';
  1589. s += showselect_row(inpid, '7 天', 7, 1, rettype);
  1590. s += showselect_row(inpid, '14 天', 14, 1, rettype);
  1591. s += showselect_row(inpid, '一个月', 30, 1, rettype);
  1592. s += showselect_row(inpid, '三个月', 90, 1, rettype);
  1593. s += showselect_row(inpid, '半年', 182, 1, rettype);
  1594. s += showselect_row(inpid, '一年', 365, 1, rettype);
  1595. s += showselect_row(inpid, '自定义', -1);
  1596. }
  1597. }
  1598. $(div.id).innerHTML = s;
  1599. }
  1600. if (inpid.indexOf("reason") != -1)
  1601.     div.style.width = "63px";
  1602. showMenu(obj.id);
  1603. if(is_ie && is_ie < 7) {
  1604. doane(event);
  1605. }
  1606. }
  1607. function showselect_row(inpid, s, v, notime, rettype) {
  1608. if(v >= 0) {
  1609. if(!rettype) {
  1610. var notime = !notime ? 0 : 1;
  1611. t = today.getTime();
  1612. t += 86400000 * v;
  1613. d = new Date();
  1614. d.setTime(t);
  1615. return '<a href="javascript:;" onclick="$('' + inpid + '').value = '' + d.getFullYear() + '-' + (d.getMonth() + 1) + '-' + d.getDate() + (!notime ? ' ' + d.getHours() + ':' + d.getMinutes() : '') + ''">' + s + '</a><br />';
  1616. } else {
  1617. return '<a href="javascript:;" onclick="$('' + inpid + '').value = '' + v + ''">' + s + '</a><br />';
  1618. }
  1619. } else if(v == -1) {
  1620. return '<a href="javascript:;" onclick="$('' + inpid + '').focus()">' + s + '</a><br />';
  1621. } else if(v == -2) {
  1622. return '<a href="javascript:;" onclick="$('' + inpid + '').onclick()">' + s + '</a><br />';
  1623. }
  1624. }
  1625. //Smilies
  1626. function smilies_show(id, smcols, method, seditorkey) {
  1627. if(seditorkey && !$(seditorkey + 'smilies_menu')) {
  1628. var div = document.createElement("div");
  1629. div.id = seditorkey + 'smilies_menu';
  1630. div.style.display = 'none';
  1631. div.className = 'smilieslist';
  1632. $('append_parent').appendChild(div);
  1633. var div = document.createElement("div");
  1634. div.id = id;
  1635. div.style.overflow = 'hidden';
  1636. $(seditorkey + 'smilies_menu').appendChild(div);
  1637. }
  1638. if(typeof smilies_type == 'undefined') {
  1639. var scriptNode = document.createElement("script");
  1640. scriptNode.type = "text/javascript";
  1641. scriptNode.charset = charset ? charset : (is_moz ? document.characterSet : document.charset);
  1642. scriptNode.src = 'forumdata/cache/smilies_var.js?' + VERHASH;
  1643. $('append_parent').appendChild(scriptNode);
  1644. if(is_ie) {
  1645. scriptNode.onreadystatechange = function() {
  1646. smilies_onload(id, smcols, method, seditorkey);
  1647. }
  1648. } else {
  1649. scriptNode.onload = function() {
  1650. smilies_onload(id, smcols, method, seditorkey);
  1651. }
  1652. }
  1653. } else {
  1654. smilies_onload(id, smcols, method, seditorkey);
  1655. }
  1656. }
  1657. var currentstype = null;
  1658. function smilies_onload(id, smcols, method, seditorkey) {
  1659. seditorkey = !seditorkey ? '' : seditorkey;
  1660. smile = getcookie('smile').split('D');
  1661. if(typeof smilies_type == 'object') {
  1662. if(smile[0] && smilies_array[smile[0]]) {
  1663. currentstype = smile[0];
  1664. } else {
  1665. for(i in smilies_array) {
  1666. currentstype = i; break;
  1667. }
  1668. }
  1669. smiliestype = '<div class="smiliesgroup" style="margin-right: 0"><ul>';
  1670. for(i in smilies_type) {
  1671. if(smilies_type[i][0]) {
  1672. smiliestype += '<li><a href="javascript:;" hidefocus="true" ' + (currentstype == i ? 'class="current"' : '') + ' id="stype_'+method+'_'+i+'" onclick="smilies_switch('' + id + '', '' + smcols + '', '+i+', 1, ' + method + ', '' + seditorkey + '');if(currentstype) {$('stype_'+method+'_'+currentstype).className='';}this.className='current';currentstype='+i+';">'+smilies_type[i][0]+'</a></li>';
  1673. }
  1674. }
  1675. smiliestype += '</ul></div>';
  1676. $(id).innerHTML = smiliestype + '<div style="clear: both" class="float_typeid" id="' + id + '_data"></div><table class="smilieslist_table" id="' + id + '_preview_table" style="display: none"><tr><td class="smilieslist_preview" id="' + id + '_preview"></td></tr></table><div style="clear: both" class="smilieslist_page" id="' + id + '_page"></div>';
  1677. smilies_switch(id, smcols, currentstype, smile[1], method, seditorkey);
  1678. }
  1679. }
  1680. function smilies_switch(id, smcols, type, page, method, seditorkey) {
  1681. page = page ? page : 1;
  1682. if(!smilies_array[type] || !smilies_array[type][page]) return;
  1683. setcookie('smile', type + 'D' + page, 31536000);
  1684. smiliesdata = '<table id="' + id + '_table" cellpadding="0" cellspacing="0" style="clear: both"><tr>';
  1685. j = k = 0;
  1686. img = new Array();
  1687. for(i in smilies_array[type][page]) {
  1688. if(j >= smcols) {
  1689. smiliesdata += '<tr>';
  1690. j = 0;
  1691. }
  1692. s = smilies_array[type][page][i];
  1693. smilieimg = 'images/smilies/' + smilies_type[type][1] + '/' + s[2];
  1694. img[k] = new Image();
  1695. img[k].src = smilieimg;
  1696. smiliesdata += s && s[0] ? '<td onmouseover="smilies_preview('' + id + '', this, ' + s[5] + ')" onmouseout="smilies_preview('' + id + '')" onclick="' + (method ? 'insertSmiley(' + s[0] + ')': 'seditor_insertunit('' + seditorkey + '', '' + s[1].replace(/'/, '\'') + '')') +
  1697. '"><img id="smilie_' + s[0] + '" width="' + s[3] +'" height="' + s[4] +'" src="' + smilieimg + '" alt="' + s[1] + '" />' : '<td>';
  1698. j++;k++;
  1699. }
  1700. smiliesdata += '</table>';
  1701. smiliespage = '';
  1702. if(smilies_array[type].length > 2) {
  1703. prevpage = ((prevpage = parseInt(page) - 1) < 1) ? smilies_array[type].length - 1 : prevpage;
  1704. nextpage = ((nextpage = parseInt(page) + 1) == smilies_array[type].length) ? 1 : nextpage;
  1705. smiliespage = '<div class="pags_act"><a href="javascript:;" onclick="smilies_switch('' + id + '', '' + smcols + '', ' + type + ', ' + prevpage + ', ' + method + ', '' + seditorkey + '')">上页</a>' +
  1706. '<a href="javascript:;" onclick="smilies_switch('' + id + '', '' + smcols + '', ' + type + ', ' + nextpage + ', ' + method + ', '' + seditorkey + '')">下页</a></div>' +
  1707. page + '/' + (smilies_array[type].length - 1);
  1708. }
  1709. $(id + '_data').innerHTML = smiliesdata;
  1710. $(id + '_page').innerHTML = smiliespage;
  1711. }
  1712. function smilies_preview(id, obj, v) {
  1713. if(!obj) {
  1714. $(id + '_preview_table').style.display = 'none';
  1715. } else {
  1716. $(id + '_preview_table').style.display = '';
  1717. $(id + '_preview').innerHTML = '<img width="' + v + '" src="' + obj.childNodes[0].src + '" />';
  1718. }
  1719. }
  1720. //SEditor
  1721. function seditor_ctlent(event, script) {
  1722. if(postSubmited == false && (event.ctrlKey && event.keyCode == 13) || (event.altKey && event.keyCode == 83) && $('quickpostsubmit'))
  1723. {
  1724.     if (eval(script))
  1725.     {
  1726.         postSubmited = true;
  1727.         $('quickpostsubmit').disabled = true;
  1728.         $('quickpostform').submit(); 
  1729.     }
  1730. }
  1731. }
  1732. function parseurl(str, mode, parsecode) {
  1733. if(!parsecode) str= str.replace(/s*[code]([sS]+?)[/code]s*/ig, function($1, $2) {return codetag($2);});
  1734. str = str.replace(/([^>=]"'/]|^)((((https?|ftp)://)|www.)([w-]+.)*[w-u4e00-u9fa5]+.([.a-zA-Z0-9]+|u4E2Du56FD|u7F51u7EDC|u516Cu53F8)((?|/|:)+[w./=?%-&~`@':+!]*)+.(jpg|gif|png|bmp))/ig, mode == 'html' ? '$1<img src="$2" border="0">' : '$1[img]$2[/img]');
  1735. str = str.replace(/([^>=]"'/@]|^)((((https?|ftp|gopher|news|telnet|rtsp|mms|callto|bctp|ed2k|thunder|synacast)://))([w-]+.)*[:.@-wu4e00-u9fa5]+.([.a-zA-Z0-9]+|u4E2Du56FD|u7F51u7EDC|u516Cu53F8)((?|/|:)+[w./=?%-&~`@':+!#]*)*)/ig, mode == 'html' ? '$1<a href="$2" target="_blank">$2</a>' : '$1[url]$2[/url]');
  1736. str = str.replace(/([^w>=]"'/@]|^)((www.)([w-]+.)*[:.@-wu4e00-u9fa5]+.([.a-zA-Z0-9]+|u4E2Du56FD|u7F51u7EDC|u516Cu53F8)((?|/|:)+[w./=?%-&~`@':+!#]*)*)/ig, mode == 'html' ? '$1<a href="$2" target="_blank">$2</a>' : '$1[url]$2[/url]');
  1737. str = str.replace(/([^w->=]:"'./]|^)(([-.w]+@[.-w]+(.w+)+))/ig, mode == 'html' ? '$1<a href="mailto:$2">$2</a>' : '$1[email]$2[/email]');
  1738. if(!parsecode) {
  1739. for(var i = 0; i <= codecount; i++) {
  1740. str = str.replace("[tDISCUZ_CODE_" + i + "t]", codehtml[i]);
  1741. }
  1742. }
  1743. return str;
  1744. }
  1745. function codetag(text) {
  1746. codecount++;
  1747. if(typeof wysiwyg != 'undefined' && wysiwyg) text = text.replace(/<br[^>]*>/ig, 'n').replace(/<(/|)[A-Za-z].*?>/ig, '');
  1748. codehtml[codecount] = '[code]' + text + '[/code]';
  1749. return '[tDISCUZ_CODE_' + codecount + 't]';
  1750. }
  1751. function seditor_insertunit(key, text, textend, moveend) {
  1752. $(key + 'message').focus();
  1753. textend = isUndefined(textend) ? '' : textend;
  1754. moveend = isUndefined(textend) ? 0 : moveend;
  1755. startlen = strlen(text);
  1756. endlen = strlen(textend);
  1757. if(!isUndefined($(key + 'message').selectionStart)) {
  1758. var opn = $(key + 'message').selectionStart + 0;
  1759. if(textend != '') {
  1760. text = text + $(key + 'message').value.substring($(key + 'message').selectionStart, $(key + 'message').selectionEnd) + textend;
  1761. }
  1762. $(key + 'message').value = $(key + 'message').value.substr(0, $(key + 'message').selectionStart) + text + $(key + 'message').value.substr($(key + 'message').selectionEnd);
  1763. if(!moveend) {
  1764. $(key + 'message').selectionStart = opn + strlen(text) - endlen;
  1765. $(key + 'message').selectionEnd = opn + strlen(text) - endlen;
  1766. }
  1767. } else if(document.selection && document.selection.createRange) {
  1768. var sel = document.selection.createRange();
  1769. if(textend != '') {
  1770. text = text + sel.text + textend;
  1771. }
  1772. sel.text = text.replace(/r?n/g, 'rn');
  1773. if(!moveend) {
  1774. sel.moveStart('character', -endlen);
  1775. sel.moveEnd('character', -endlen);
  1776. }
  1777. sel.select();
  1778. } else {
  1779. $(key + 'message').value += text;
  1780. }
  1781. hideMenu();
  1782. }
  1783. function pmchecknew() {
  1784. ajaxget('pm.php?checknewpm=' + Math.random(), 'pm_ntc', 'ajaxwaitid');
  1785. }
  1786. function pmviewnew() {
  1787. if(!$('pm_ntc_menu')) {
  1788. var div = document.createElement("div");
  1789. div.id = 'pm_ntc_menu';
  1790. div.style.display = 'none';
  1791. $('append_parent').appendChild(div);
  1792. div.innerHTML = '<div id="pm_ntc_view"></div>';
  1793. }
  1794. showMenu('pm_ntc');
  1795. if($('pm_ntc_view').innerHTML == '') {
  1796. ajaxget('pm.php?action=viewnew', 'pm_ntc_view', 'ajaxwaitid');
  1797. }
  1798. }
  1799. function creditnoticewin() {
  1800. if(!(creditnoticedata = getcookie('discuz_creditnotice'))) {
  1801. return;
  1802. }
  1803. if(getcookie('discuz_creditnoticedisable')) {
  1804. return;
  1805. }
  1806. creditnoticearray = creditnoticedata.split('D');
  1807. if(creditnoticearray[9] != discuz_uid) {
  1808. return;
  1809. }
  1810. creditnames = creditnotice.split(',');
  1811. creditinfo = new Array();
  1812. for(i in creditnames) {
  1813. var e = creditnames[i].split('|');
  1814. creditinfo[e[0]] = [e[1], e[2]];
  1815. }
  1816. s = '';
  1817. for(i = 1;i <= 8;i++) {
  1818. if(creditnoticearray[i] != 0 && creditinfo[i]) {
  1819. s += '<span>' + creditinfo[i][0] + (creditnoticearray[i] > 0 ? '<em>+' : '<em class="desc">') + creditnoticearray[i] + '</em>' + creditinfo[i][1] + '</span>';
  1820. }
  1821. }
  1822. setcookie('discuz_creditnotice', '', -2592000);
  1823. if(s) {
  1824. noticewin(s, 2000, 1);
  1825. }
  1826. }
  1827. function noticewin(s, t, c) {
  1828. c = !c ? '' : c;
  1829. s = !c ? '<span style="font-style: normal;">'+s+'</span>' : s;
  1830. s = '<table cellspacing="0" cellpadding="0" class="popupcredit"><tr><td class="pc_l">&nbsp;</td><td class="pc_c"><div class="pc_inner">' + s +
  1831. (c ? '<a class="pc_btn" href="javascript:;" onclick="display('ntcwin');setcookie('discuz_creditnoticedisable', 1, 31536000);" title="不要再提示我"><img src="' + IMGDIR + '/popupcredit_btn.gif" alt="不要再提示我" /></a>' : '') +
  1832. '</td><td class="pc_r">&nbsp;</td></tr></table>';
  1833. if(!$('ntcwin')) {
  1834. var div = document.createElement("div");
  1835. div.id = 'ntcwin';
  1836. div.style.display = 'none';
  1837. div.style.position = 'absolute';
  1838. div.style.zIndex = '100000';
  1839. $('append_parent').appendChild(div);
  1840. }
  1841. $('ntcwin').innerHTML = s;
  1842. $('ntcwin').style.display = '';
  1843. $('ntcwin').style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=0)';
  1844. $('ntcwin').style.opacity = 0;
  1845. pbegin = document.documentElement.scrollTop + (document.documentElement.clientHeight / 2);
  1846. pend = document.documentElement.scrollTop + (document.documentElement.clientHeight / 5);
  1847. setTimeout(function () {noticewin_show(pbegin, pend, 0, t)}, 10);
  1848. $('ntcwin').style.left = ((document.documentElement.clientWidth - $('ntcwin').clientWidth) / 2) + 'px';
  1849. $('ntcwin').style.top = pbegin + 'px';
  1850. }
  1851. function noticewin_show(b, e, a, t) {
  1852. step = (b - e) / 10;
  1853. newp = (parseInt($('ntcwin').style.top) - step);
  1854. if(newp > e) {
  1855. $('ntcwin').style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + a + ')';
  1856. $('ntcwin').style.opacity = a / 100;
  1857. $('ntcwin').style.top = newp + 'px';
  1858. setTimeout(function () {noticewin_show(b, e, a += 10, t)}, 10);
  1859. } else {
  1860. $('ntcwin').style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=100)';
  1861. $('ntcwin').style.opacity = 1;
  1862. setTimeout('display_opacity('ntcwin', 100)', t);
  1863. }
  1864. }
  1865. function showimmestatus(imme) {
  1866. var lang = {'Online':'MSN 在线','Busy':'MSN 忙碌','Away':'MSN 离开','Offline':'MSN 脱机'};
  1867. $('imme_status_' + imme.id.substr(0, imme.id.indexOf('@'))).innerHTML = lang[imme.statusText];
  1868. }
  1869. var discuz_uid = isUndefined(discuz_uid) ? 0 : discuz_uid;
  1870. var creditnotice = isUndefined(creditnotice) ? '' : creditnotice;
  1871. var cookiedomain = isUndefined(cookiedomain) ? '' : cookiedomain;
  1872. var cookiepath = isUndefined(cookiepath) ? '' : cookiepath;
  1873. if(typeof IN_ADMINCP == 'undefined') {
  1874. if(discuz_uid && !getcookie('checkpm')) {
  1875. _attachEvent(window, 'load', pmchecknew, document);
  1876. }
  1877. if(creditnotice != '' && getcookie('discuz_creditnotice') && !getcookie('discuz_creditnoticedisable')) {
  1878. _attachEvent(window, 'load', function(){creditnoticewin()}, document);
  1879. }
  1880. }
  1881. /*Discuz!NT*/
  1882. function scrollHiddenDiv(div, scrollwidth)
  1883. {
  1884. div.scrollLeft += scrollwidth;
  1885. }
  1886. function findtags(parentobj, tag) {
  1887. if(!isUndefined(parentobj.getElementsByTagName)) {
  1888. return parentobj.getElementsByTagName(tag);
  1889. } else if(parentobj.all && parentobj.all.tags) {
  1890. return parentobj.all.tags(tag);
  1891. } else {
  1892. return null;
  1893. }
  1894. }
  1895. function getQueryString(queryname) {
  1896.     var qKeys = {};
  1897.     var re = /[?&]([^=]+)(?:=([^&]*))?/g;
  1898.     var matchInfo;
  1899.     while(matchInfo = re.exec(location.search)){
  1900.     qKeys[matchInfo[1]] = matchInfo[2];
  1901.     }
  1902.     return typeof(qKeys[queryname])=='undefined'?'':qKeys[queryname];
  1903. }
  1904. function getUserid()
  1905. {
  1906. // cookies are separated by semicolons
  1907. var aCookie = document.cookie.split("; ");
  1908. for (var i=0; i < aCookie.length; i++)
  1909. {
  1910. // a name alue pair (a crumb) is separated by an equal sign
  1911. var aCrumb = aCookie[i].split("=");
  1912. for(var j = 0; j < aCrumb.length; j++)
  1913. {
  1914. if ("userid" == aCrumb[j])
  1915. {
  1916. return aCrumb[j+1].split("&")[0];
  1917. }
  1918. }
  1919. }
  1920. // a cookie with the requested name does not exist
  1921. return null;
  1922. }
  1923. function getCSSRule(ruleName, deleteFlag) {               // Return requested style obejct
  1924.    ruleName=ruleName.toLowerCase();                       // Convert test string to lower case.
  1925.    if (document.styleSheets) {                            // If browser can play with stylesheets
  1926.       for (var i=0; i<document.styleSheets.length; i++) { // For each stylesheet
  1927.          var styleSheet=document.styleSheets[i];          // Get the current Stylesheet
  1928.          var ii=0;                                        // Initialize subCounter.
  1929.          var cssRule=false;                               // Initialize cssRule. 
  1930.          do {                                             // For each rule in stylesheet
  1931.             if (styleSheet.cssRules) {                    // Browser uses cssRules?
  1932.                cssRule = styleSheet.cssRules[ii];         // Yes --Mozilla Style
  1933.             } else {                                      // Browser usses rules?
  1934.                cssRule = styleSheet.rules[ii];            // Yes IE style. 
  1935.             }                                             // End IE check.
  1936.             if (cssRule)  {                               // If we found a rule...
  1937.                if (cssRule.selectorText.toLowerCase()==ruleName) { //  match ruleName?
  1938.                   if (deleteFlag=='delete') {             // Yes.  Are we deleteing?
  1939.                      if (styleSheet.cssRules) {           // Yes, deleting...
  1940.                         styleSheet.deleteRule(ii);        // Delete rule, Moz Style
  1941.                      } else {                             // Still deleting.
  1942.                         styleSheet.removeRule(ii);        // Delete rule IE style.
  1943.                      }                                    // End IE check.
  1944.                      return true;                         // return true, class deleted.
  1945.                   } else {                                // found and not deleting.
  1946.                      return cssRule;                      // return the style object.
  1947.                   }                                       // End delete Check
  1948.                }                                          // End found rule name
  1949.             }                                             // end found cssRule
  1950.             ii++;                                         // Increment sub-counter
  1951.          } while (cssRule)                                // end While loop
  1952.       }                                                   // end For loop
  1953.    }                                                      // end styleSheet ability check
  1954.    return false;                                          // we found NOTHING!
  1955. }                                                         // end getCSSRule 
  1956. function killCSSRule(ruleName) {                          // Delete a CSS rule   
  1957.    return getCSSRule(ruleName,'delete');                  // just call getCSSRule w/delete flag.
  1958. }                                                         // end killCSSRule
  1959. function addCSSRule(ruleName) {                           // Create a new css rule
  1960.    if (document.styleSheets) {                            // Can browser do styleSheets?
  1961.       if (!getCSSRule(ruleName)) {                        // if rule doesn't exist...
  1962.          if (document.styleSheets[0].addRule) {           // Browser is IE?
  1963.             document.styleSheets[0].addRule(ruleName, null,0);      // Yes, add IE style
  1964.          } else {                                         // Browser is IE?
  1965.             document.styleSheets[0].insertRule(ruleName+' { }', 0); // Yes, add Moz style.
  1966.          }                                                // End browser check
  1967.       }                                                   // End already exist check.
  1968.    }                                                      // End browser ability check.
  1969.    return getCSSRule(ruleName);                           // return rule we just created.
  1970. }
  1971. function AC_FL_RunContent()
  1972. {
  1973.     var ret = AC_GetArgs(arguments, "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000", "application/x-shockwave-flash");
  1974.     var str = '';
  1975.     if (is_ie && !is_opera)
  1976.     {
  1977.         str += '<object ';
  1978.         for (var i in ret.objAttrs)
  1979.         {
  1980.             str += i + '="' + ret.objAttrs[i] + '" ';
  1981.         }
  1982.         str += '>';
  1983.         for (var i in ret.params)
  1984.         {
  1985.             str += '<param name="' + i + '" value="' + ret.params[i] + '" /> ';
  1986.         }
  1987.         str += '</object>';
  1988.     } else
  1989.     {
  1990.         str += '<embed ';
  1991.         for (var i in ret.embedAttrs)
  1992.         {
  1993.             str += i + '="' + ret.embedAttrs[i] + '" ';
  1994.         }
  1995.         str += '></embed>';
  1996.     }
  1997.     return str;
  1998. }
  1999. function AC_GetArgs(args, classid, mimeType)
  2000. {
  2001.     var ret = new Object();
  2002.     ret.embedAttrs = new Object();
  2003.     ret.params = new Object();
  2004.     ret.objAttrs = new Object();
  2005.     for (var i = 0; i < args.length; i = i + 2)
  2006.     {
  2007.         var currArg = args[i].toLowerCase();
  2008.         switch (currArg)
  2009.         {
  2010.             case "classid": break;
  2011.             case "pluginspage": ret.embedAttrs[args[i]] = 'http://www.macromedia.com/go/getflashplayer'; break;
  2012.             case "src": ret.embedAttrs[args[i]] = args[i + 1]; ret.params["movie"] = args[i + 1]; break;
  2013.             case "codebase": ret.objAttrs[args[i]] = 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0'; break;
  2014.             case "onafterupdate": case "onbeforeupdate": case "onblur": case "oncellchange": case "onclick": case "ondblclick": case "ondrag": case "ondragend":
  2015.             case "ondragenter": case "ondragleave": case "ondragover": case "ondrop": case "onfinish": case "onfocus": case "onhelp": case "onmousedown":
  2016.             case "onmouseup": case "onmouseover": case "onmousemove": case "onmouseout": case "onkeypress": case "onkeydown": case "onkeyup": case "onload":
  2017.             case "onlosecapture": case "onpropertychange": case "onreadystatechange": case "onrowsdelete": case "onrowenter": case "onrowexit": case "onrowsinserted": case "onstart":
  2018.             case "onscroll": case "onbeforeeditfocus": case "onactivate": case "onbeforedeactivate": case "ondeactivate": case "type":
  2019.             case "id": ret.objAttrs[args[i]] = args[i + 1]; break;
  2020.             case "width": case "height": case "align": case "vspace": case "hspace": case "class": case "title": case "accesskey": case "name":
  2021.             case "tabindex": ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i + 1]; break;
  2022.             default: ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i + 1];
  2023.         }
  2024.     }
  2025.     ret.objAttrs["classid"] = classid;
  2026.     if (mimeType)
  2027.     {
  2028.         ret.embedAttrs["type"] = mimeType;
  2029.     }
  2030.     return ret;
  2031. }
  2032.  
  2033.  
  2034.  function newSetMenuPosition(showid, menuid, pos) {
  2035. var showObj = $(showid);
  2036. var menuObj = menuid ? $(menuid) : $(showid + '_menu');
  2037. if(isUndefined(pos)) pos = '43';
  2038. var basePoint = parseInt(pos.substr(0, 1));
  2039. var direction = parseInt(pos.substr(1, 1));
  2040. var sxy = sx = sy = sw = sh = ml = mt = mw = mcw = mh = mch = bpl = bpt = 0;
  2041. if(!menuObj || (basePoint > 0 && !showObj)) return;
  2042. if(showObj) {
  2043. sxy = fetchOffset(showObj);
  2044. sx = sxy['left'];
  2045. sy = sxy['top'];
  2046. sw = showObj.offsetWidth;
  2047. sh = showObj.offsetHeight;
  2048. }
  2049. mw = menuObj.offsetWidth;
  2050. mcw = menuObj.clientWidth;
  2051. mh = menuObj.offsetHeight;
  2052. mch = menuObj.clientHeight;
  2053. switch(basePoint) {
  2054. case 1:
  2055. bpl = sx;
  2056. bpt = sy;
  2057. break;
  2058. case 2:
  2059. bpl = sx + sw;
  2060. bpt = sy;
  2061. break;
  2062. case 3:
  2063. bpl = sx + sw;
  2064. bpt = sy + sh;
  2065. break;
  2066. case 4:
  2067. bpl = sx;
  2068. bpt = sy + sh;
  2069. break;
  2070. }
  2071. switch(direction) {
  2072. case 0:
  2073. menuObj.style.left = (document.body.clientWidth - menuObj.clientWidth) / 2 + 'px';
  2074. mt = (document.documentElement.clientHeight - menuObj.clientHeight) / 2;
  2075. break;
  2076. case 1:
  2077. ml = bpl - mw;
  2078. mt = bpt - mh;
  2079. break;
  2080. case 2:
  2081. ml = bpl;
  2082. mt = bpt - mh;
  2083. break;
  2084. case 3:
  2085. ml = bpl;
  2086. mt = bpt;
  2087. break;
  2088. case 4:
  2089. ml = bpl - mw;
  2090. mt = bpt;
  2091. break;
  2092. }
  2093. if(in_array(direction, [1, 4]) && ml < 0) {
  2094. ml = bpl;
  2095. if(in_array(basePoint, [1, 4])) ml += sw;
  2096. } else if(ml + mw > document.documentElement.scrollLeft + document.body.clientWidth && sx >= mw) {
  2097. ml = bpl - mw;
  2098. if(in_array(basePoint, [2, 3])) ml -= sw;
  2099. }
  2100. if(in_array(direction, [1, 2]) && mt < 0) {
  2101. mt = bpt;
  2102. if(in_array(basePoint, [1, 2])) mt += sh;
  2103. } else if(mt + mh > document.documentElement.scrollTop + document.documentElement.clientHeight && sy >= mh) {
  2104. mt = bpt - mh;
  2105. if(in_array(basePoint, [3, 4])) mt -= sh;
  2106. }
  2107. if(pos == '210') {
  2108. ml += 69 - sw / 2;
  2109. mt -= 5;
  2110. if(showObj.tagName == 'TEXTAREA') {
  2111. ml -= sw / 2;
  2112. mt += sh / 2;
  2113. }
  2114. }
  2115. if(direction == 0 || menuObj.scrolly) {
  2116. if(BROWSER.ie && BROWSER.ie < 7) {
  2117. if(direction == 0) mt += Math.max(document.documentElement.scrollTop, document.body.scrollTop);
  2118. } else {
  2119. if(menuObj.scrolly) mt -= Math.max(document.documentElement.scrollTop, document.body.scrollTop);
  2120. menuObj.style.position = 'fixed';
  2121. }
  2122. }
  2123. if(ml) menuObj.style.left = ml + 'px';
  2124. if(mt) menuObj.style.top = mt + 'px';
  2125. if(direction == 0 && BROWSER.ie && !document.documentElement.clientHeight) {
  2126. menuObj.style.position = 'absolute';
  2127. menuObj.style.top = (document.body.clientHeight - menuObj.clientHeight) / 2 + 'px';
  2128. }
  2129. if(menuObj.style.clip && !BROWSER.opera) {
  2130. menuObj.style.clip = 'rect(auto, auto, auto, auto)';
  2131. }
  2132. }
  2133.  
  2134.  
  2135.  function newHideMenu(attr, mtype) {
  2136. attr = isUndefined(attr) ? '' : attr;
  2137. mtype = isUndefined(mtype) ? 'menu' : mtype;
  2138. if(attr == '') {
  2139. for(var i = 1; i <= JSMENU['layer']; i++) {
  2140. newHideMenu(i, mtype);
  2141. }
  2142. return;
  2143. } else if(typeof attr == 'number') {
  2144. for(var j in JSMENU['active'][attr]) {
  2145. newHideMenu(JSMENU['active'][attr][j], mtype);
  2146. }
  2147. return;
  2148. } else if(typeof attr == 'string') {
  2149. var menuObj = $(attr);
  2150. if(!menuObj || (mtype && menuObj.mtype != mtype)) return;
  2151. clearTimeout(JSMENU['timer'][attr]);
  2152. var hide = function() {
  2153. if(menuObj.cache) {
  2154. menuObj.style.display = 'none';
  2155. if(menuObj.cover) $(attr + '_cover').style.display = 'none';
  2156. } else {
  2157. menuObj.parentNode.removeChild(menuObj);
  2158. if(menuObj.cover) $(attr + '_cover').parentNode.removeChild($(attr + '_cover'));
  2159. }
  2160. var tmp = [];
  2161. for(var k in JSMENU['active'][menuObj.layer]) {
  2162. if(attr != JSMENU['active'][menuObj.layer][k]) tmp.push(JSMENU['active'][menuObj.layer][k]);
  2163. }
  2164. JSMENU['active'][menuObj.layer] = tmp;
  2165. };
  2166. if(menuObj.fade) {
  2167. var O = 100;
  2168. var fadeOut = function(O) {
  2169. if(O == 0) {
  2170. clearTimeout(fadeOutTimer);
  2171. hide();
  2172. return;
  2173. }
  2174. menuObj.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + O + ')';
  2175. menuObj.style.opacity = O / 100;
  2176. O -= 10;
  2177. var fadeOutTimer = setTimeout(function () {
  2178. fadeOut(O);
  2179. }, 50);
  2180. };
  2181. fadeOut(O);
  2182. } else {
  2183. hide();
  2184. }
  2185. }
  2186. }
  2187.  
  2188.  
  2189.  function newShowMenu(v) {
  2190. var ctrlid = isUndefined(v['ctrlid']) ? v : v['ctrlid'];
  2191. var showid = isUndefined(v['showid']) ? ctrlid : v['showid'];
  2192. var menuid = isUndefined(v['menuid']) ? showid + '_menu' : v['menuid'];
  2193. var ctrlObj = $(ctrlid);
  2194. var menuObj = $(menuid);
  2195. if(!menuObj) return;
  2196. var mtype = isUndefined(v['mtype']) ? 'menu' : v['mtype'];
  2197. var evt = isUndefined(v['evt']) ? 'mouseover' : v['evt'];
  2198. var pos = isUndefined(v['pos']) ? '43' : v['pos'];
  2199. var layer = isUndefined(v['layer']) ? 1 : v['layer'];
  2200. var duration = isUndefined(v['duration']) ? 2 : v['duration'];
  2201. var timeout = isUndefined(v['timeout']) ? 250 : v['timeout'];
  2202. var maxh = isUndefined(v['maxh']) ? 500 : v['maxh'];
  2203. var cache = isUndefined(v['cache']) ? 1 : v['cache'];
  2204. var drag = isUndefined(v['drag']) ? '' : v['drag'];
  2205. var dragobj = drag && $(drag) ? $(drag) : menuObj;
  2206. var fade = isUndefined(v['fade']) ? 0 : v['fade'];
  2207. var cover = isUndefined(v['cover']) ? 0 : v['cover'];
  2208. var zindex = isUndefined(v['zindex']) ? JSMENU['zIndex']['menu'] : v['zindex'];
  2209. if(typeof JSMENU['active'][layer] == 'undefined') {
  2210. JSMENU['active'][layer] = [];
  2211. }
  2212. if(evt == 'click' && in_array(menuid, JSMENU['active'][layer]) && mtype != 'win') {
  2213. newHideMenu(menuid, mtype);
  2214. return;
  2215. }
  2216. if(mtype == 'menu') {
  2217. newHideMenu(layer, mtype);
  2218. }
  2219. if(ctrlObj) {
  2220. if(!ctrlObj.initialized) {
  2221. ctrlObj.initialized = true;
  2222. ctrlObj.unselectable = true;
  2223. ctrlObj.outfunc = typeof ctrlObj.onmouseout == 'function' ? ctrlObj.onmouseout : null;
  2224. ctrlObj.onmouseout = function() {
  2225. if(this.outfunc) this.outfunc();
  2226. if(duration < 3 && !JSMENU['timer'][menuid]) JSMENU['timer'][menuid] = setTimeout('newHideMenu('' + menuid + '', '' + mtype + '')', timeout);
  2227. };
  2228. ctrlObj.overfunc = typeof ctrlObj.onmouseover == 'function' ? ctrlObj.onmouseover : null;
  2229. ctrlObj.onmouseover = function(e) {
  2230. doane(e);
  2231. if(this.overfunc) this.overfunc();
  2232. if(evt == 'click') {
  2233. clearTimeout(JSMENU['timer'][menuid]);
  2234. JSMENU['timer'][menuid] = null;
  2235. } else {
  2236. for(var i in JSMENU['timer']) {
  2237. if(JSMENU['timer'][i]) {
  2238. clearTimeout(JSMENU['timer'][i]);
  2239. JSMENU['timer'][i] = null;
  2240. }
  2241. }
  2242. }
  2243. };
  2244. }
  2245. }
  2246. var dragMenu = function(menuObj, e, op) {
  2247. e = e ? e : window.event;
  2248. if(op == 1) {
  2249. if(in_array(BROWSER.ie ? e.srcElement.tagName : e.target.tagName, ['TEXTAREA', 'INPUT', 'BUTTON', 'SELECT'])) {
  2250. return;
  2251. }
  2252. JSMENU['drag'] = [e.clientX, e.clientY];
  2253. JSMENU['drag'][2] = parseInt(menuObj.style.left);
  2254. JSMENU['drag'][3] = parseInt(menuObj.style.top);
  2255. document.onmousemove = function(e) {try{dragMenu(menuObj, e, 2);}catch(err){}};
  2256. document.onmouseup = function(e) {try{dragMenu(menuObj, e, 3);}catch(err){}};
  2257. doane(e);
  2258. } else if(op == 2 && JSMENU['drag'][0]) {
  2259. var menudragnow = [e.clientX, e.clientY];
  2260. menuObj.style.left = (JSMENU['drag'][2] + menudragnow[0] - JSMENU['drag'][0]) + 'px';
  2261. menuObj.style.top = (JSMENU['drag'][3] + menudragnow[1] - JSMENU['drag'][1]) + 'px';
  2262. doane(e);
  2263. } else if(op == 3) {
  2264. JSMENU['drag'] = [];
  2265. document.onmousemove = null;
  2266. document.onmouseup = null;
  2267. }
  2268. };
  2269. if(!menuObj.initialized) {
  2270. menuObj.initialized = true;
  2271. menuObj.ctrlkey = ctrlid;
  2272. menuObj.mtype = mtype;
  2273. menuObj.layer = layer;
  2274. menuObj.cover = cover;
  2275. if(ctrlObj && ctrlObj.getAttribute('fwin')) {menuObj.scrolly = true;}
  2276. menuObj.style.position = 'absolute';
  2277. menuObj.style.zIndex = zindex + layer;
  2278. menuObj.onclick = function(e) {
  2279. if(!e || BROWSER.ie) {
  2280. window.event.cancelBubble = true;
  2281. return window.event;
  2282. } else {
  2283. e.stopPropagation();
  2284. return e;
  2285. }
  2286. };
  2287. if(duration < 3) {
  2288. if(duration > 1) {
  2289. menuObj.onmouseover = function() {
  2290. clearTimeout(JSMENU['timer'][menuid]);
  2291. JSMENU['timer'][menuid] = null;
  2292. };
  2293. }
  2294. if(duration != 1) {
  2295. menuObj.onmouseout = function() {
  2296. JSMENU['timer'][menuid] = setTimeout('newHideMenu('' + menuid + '', '' + mtype + '')', timeout);
  2297. };
  2298. }
  2299. }
  2300. if(drag) {
  2301. dragobj.style.cursor = 'move';
  2302. dragobj.onmousedown = function(event) {try{dragMenu(menuObj, event, 1);}catch(e){}};
  2303. }
  2304. if(cover) {
  2305. var coverObj = document.createElement('div');
  2306. coverObj.id = menuid + '_cover';
  2307. coverObj.style.position = 'absolute';
  2308. coverObj.style.zIndex = menuObj.style.zIndex - 1;
  2309. coverObj.style.left = coverObj.style.top = '0px';
  2310. coverObj.style.width = '100%';
  2311. coverObj.style.height = document.body.scrollHeight + 'px';
  2312. coverObj.style.backgroundColor = '#000';
  2313. coverObj.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=50)';
  2314. coverObj.style.opacity = 0.5;
  2315. $('append_parent').appendChild(coverObj);
  2316. }
  2317. }
  2318. menuObj.style.display = '';
  2319. if(cover) $(menuid + '_cover').style.display = '';
  2320. if(fade) {
  2321. var O = 0;
  2322. var fadeIn = function(O) {
  2323. if(O == 100) {
  2324. clearTimeout(fadeInTimer);
  2325. return;
  2326. }
  2327. menuObj.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=' + O + ')';
  2328. menuObj.style.opacity = O / 100;
  2329. O += 10;
  2330. var fadeInTimer = setTimeout(function () {
  2331. fadeIn(O);
  2332. }, 50);
  2333. };
  2334. fadeIn(O);
  2335. menuObj.fade = true;
  2336. } else {
  2337. menuObj.style.filter = 'progid:DXImageTransform.Microsoft.Alpha(opacity=100)';
  2338. menuObj.style.opacity = 1;
  2339. menuObj.fade = false;
  2340. }
  2341. newSetMenuPosition(showid, menuid, pos);
  2342. if(maxh && menuObj.scrollHeight > maxh) {
  2343. menuObj.style.height = maxh + 'px';
  2344. if(BROWSER.opera) {
  2345. menuObj.style.overflow = 'auto';
  2346. } else {
  2347. menuObj.style.overflowY = 'auto';
  2348. }
  2349. }
  2350. if(!duration) {
  2351. setTimeout('newHideMenu('' + menuid + '', '' + mtype + '')', timeout);
  2352. }
  2353. if(!in_array(menuid, JSMENU['active'][layer])) JSMENU['active'][layer].push(menuid);
  2354. menuObj.cache = cache;
  2355. if(layer > JSMENU['layer']) {
  2356. JSMENU['layer'] = layer;
  2357. }
  2358. }
  2359.  
  2360.  function showPrompt(ctrlid, evt, msg, timeout, negligible) {
  2361. var menuid = ctrlid ? ctrlid + '_pmenu' : 'ntcwin';
  2362. var duration = timeout ? 0 : 3;
  2363. if(!$(menuid)) {
  2364. var div = document.createElement('div');
  2365. div.id = menuid;
  2366. div.className = ctrlid ? 'promptmenu up' : 'ntcwin';
  2367. div.style.display = 'none';
  2368. $('append_parent').appendChild(div);
  2369. if(ctrlid) {
  2370. msg = '<div id="' + ctrlid + '_prompt" class="promptcontent"><ul><li>' + msg + '</li></ul></div>';
  2371. } else {
  2372. msg = negligible ? msg : '<span style="font-style: normal;">' + msg + '</span>';
  2373. msg = '<table cellspacing="0" cellpadding="0" class="popupcredit"><tr><td class="pc_l">&nbsp;</td><td class="pc_c"><div class="pc_inner">' + msg +
  2374. (negligible ? '<a class="pc_btn" href="javascript:;" onclick="display('ntcwin');setcookie('discuz_creditnoticedisable', 1, 31536000);" title="不要再提示我"><img src="' + IMGDIR + '/popupcredit_btn.gif" alt="不要再提示我" /></a>' : '') +
  2375. '</td><td class="pc_r">&nbsp;</td></tr></table>';
  2376. }
  2377. div.innerHTML = msg;
  2378. }
  2379. if(ctrlid) {
  2380. if($(ctrlid).evt !== false) {
  2381. var prompting = function() {
  2382. newShowMenu({'mtype':'prompt','ctrlid':ctrlid,'evt':evt,'menuid':menuid,'pos':'210'});
  2383. };
  2384. if(evt == 'click') {
  2385. $(ctrlid).onclick = prompting;
  2386. } else {
  2387. $(ctrlid).onmouseover = prompting;
  2388. }
  2389. }
  2390. newShowMenu({'mtype':'prompt','ctrlid':ctrlid,'evt':evt,'menuid':menuid,'pos':'210','duration':duration,'timeout':timeout,'fade':1,'zindex':JSMENU['zIndex']['prompt']});
  2391. $(ctrlid).unselectable = false;
  2392. } else {
  2393. newShowMenu({'mtype':'prompt','pos':'00','menuid':menuid,'duration':duration,'timeout':timeout,'fade':1,'zindex':JSMENU['zIndex']['prompt']});
  2394. }
  2395. }
  2396. function showCreditPrompt() {
  2397. var notice = getcookie('discuz_creditnotice').split(',');
  2398. /*  if(notice.length < 2 || notice[9] != discuz_uid || getcookie('discuz_creditnoticedisable')) {
  2399. return;
  2400. } */
  2401. var creditnames = creditnotice.split(',');
  2402. var creditinfo = [];
  2403. var s = '';
  2404. var e;
  2405. for(var i in creditnames) {
  2406. e = creditnames[i].split('|');
  2407. creditinfo[e[0]] = [e[1], e[2]];
  2408. }
  2409. for(i = 1; i <= 8; i++) {
  2410. if(notice[i] != 0 && creditinfo[i]) {
  2411. s += '<span>' + creditinfo[i][0] + (notice[i] > 0 ? '<em>+' : '<em class="desc">') + notice[i] + '</em>' + creditinfo[i][1] + '</span>';
  2412. }
  2413. }
  2414. s && showPrompt(null, null, s, 2000, 1);
  2415. setcookie('discuz_creditnotice', '', -2592000);
  2416. }
  2417. function onloadshowCreditPrompt()
  2418. {
  2419. if(typeof IN_ADMINCP == 'undefined') {
  2420. if(creditnotice != '' && getcookie('discuz_creditnotice') && !getcookie('discuz_creditnoticedisable')) {
  2421. try
  2422. {
  2423. _attachEvent(window, 'load', showCreditPrompt, document) || showCreditPrompt(); 
  2424. }
  2425. catch(e)
  2426. {
  2427. showCreditPrompt();
  2428. }
  2429. }
  2430. }
  2431. }
  2432. _attachEvent(window, 'load', onloadshowCreditPrompt, document);
  2433.