overlib.js
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:47k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. ///////
  2. //  overLIB 4.10 - You may not remove or change this notice.
  3. //  Copyright Erik Bosrup 1998-2004. All rights reserved.
  4. //
  5. //  Contributors are listed on the homepage.
  6. //  This file might be old, always check for the latest version at:
  7. //  http://www.bosrup.com/web/overlib/
  8. //
  9. //  Please read the license agreement (available through the link above)
  10. //  before using overLIB. Direct any licensing questions to erik@bosrup.com.
  11. //
  12. //  Do not sell this as your own work or remove this copyright notice. 
  13. //  For full details on copying or changing this script please read the
  14. //  license agreement at the link above. Please give credit on sites that
  15. //  use overLIB and submit changes of the script so other people can use
  16. //  them as well.
  17. //   $Revision: 1.1 $                $Date: 2004/12/29 06:02:48 $
  18. ///////
  19. //mini
  20. ////////
  21. // PRE-INIT
  22. // Ignore these lines, configuration is below.
  23. ////////
  24. var olLoaded = 0;var pmStart = 10000000; var pmUpper = 10001000; var pmCount = pmStart+1; var pmt=''; var pms = new Array(); var olInfo = new Info('4.10', 1);
  25. var FREPLACE = 0; var FBEFORE = 1; var FAFTER = 2; var FALTERNATE = 3; var FCHAIN=4;
  26. var olHideForm=0;  // parameter for hiding SELECT and ActiveX elements in IE5.5+ 
  27. var olHautoFlag = 0;  // flags for over-riding VAUTO and HAUTO if corresponding
  28. var olVautoFlag = 0;  // positioning commands are used on the command line
  29. registerCommands('donothing,inarray,caparray,sticky,background,noclose,caption,left,right,center,offsetx,offsety,fgcolor,bgcolor,textcolor,capcolor,closecolor,width,border,cellpad,status,autostatus,autostatuscap,height,closetext,snapx,snapy,fixx,fixy,relx,rely,fgbackground,bgbackground,padx,pady,fullhtml,above,below,capicon,textfont,captionfont,closefont,textsize,captionsize,closesize,timeout,function,delay,hauto,vauto,closeclick,wrap,followmouse,mouseoff,closetitle,cssoff,compatmode,cssclass,fgclass,bgclass,textfontclass,captionfontclass,closefontclass');
  30. ////////
  31. // DEFAULT CONFIGURATION
  32. // Settings you want everywhere are set here. All of this can also be
  33. // changed on your html page or through an overLIB call.
  34. ////////
  35. if (typeof ol_fgcolor=='undefined') var ol_fgcolor="#CCCCFF";
  36. if (typeof ol_bgcolor=='undefined') var ol_bgcolor="#333399";
  37. if (typeof ol_textcolor=='undefined') var ol_textcolor="#000000";
  38. if (typeof ol_capcolor=='undefined') var ol_capcolor="#FFFFFF";
  39. if (typeof ol_closecolor=='undefined') var ol_closecolor="#9999FF";
  40. if (typeof ol_textfont=='undefined') var ol_textfont="Verdana,Arial,Helvetica";
  41. if (typeof ol_captionfont=='undefined') var ol_captionfont="Verdana,Arial,Helvetica";
  42. if (typeof ol_closefont=='undefined') var ol_closefont="Verdana,Arial,Helvetica";
  43. if (typeof ol_textsize=='undefined') var ol_textsize="1";
  44. if (typeof ol_captionsize=='undefined') var ol_captionsize="1";
  45. if (typeof ol_closesize=='undefined') var ol_closesize="1";
  46. if (typeof ol_width=='undefined') var ol_width="200";
  47. if (typeof ol_border=='undefined') var ol_border="1";
  48. if (typeof ol_cellpad=='undefined') var ol_cellpad=2;
  49. if (typeof ol_offsetx=='undefined') var ol_offsetx=10;
  50. if (typeof ol_offsety=='undefined') var ol_offsety=10;
  51. if (typeof ol_text=='undefined') var ol_text="Default Text";
  52. if (typeof ol_cap=='undefined') var ol_cap="";
  53. if (typeof ol_sticky=='undefined') var ol_sticky=0;
  54. if (typeof ol_background=='undefined') var ol_background="";
  55. if (typeof ol_close=='undefined') var ol_close="Close";
  56. if (typeof ol_hpos=='undefined') var ol_hpos=RIGHT;
  57. if (typeof ol_status=='undefined') var ol_status="";
  58. if (typeof ol_autostatus=='undefined') var ol_autostatus=0;
  59. if (typeof ol_height=='undefined') var ol_height=-1;
  60. if (typeof ol_snapx=='undefined') var ol_snapx=0;
  61. if (typeof ol_snapy=='undefined') var ol_snapy=0;
  62. if (typeof ol_fixx=='undefined') var ol_fixx=-1;
  63. if (typeof ol_fixy=='undefined') var ol_fixy=-1;
  64. if (typeof ol_relx=='undefined') var ol_relx=null;
  65. if (typeof ol_rely=='undefined') var ol_rely=null;
  66. if (typeof ol_fgbackground=='undefined') var ol_fgbackground="";
  67. if (typeof ol_bgbackground=='undefined') var ol_bgbackground="";
  68. if (typeof ol_padxl=='undefined') var ol_padxl=1;
  69. if (typeof ol_padxr=='undefined') var ol_padxr=1;
  70. if (typeof ol_padyt=='undefined') var ol_padyt=1;
  71. if (typeof ol_padyb=='undefined') var ol_padyb=1;
  72. if (typeof ol_fullhtml=='undefined') var ol_fullhtml=0;
  73. if (typeof ol_vpos=='undefined') var ol_vpos=BELOW;
  74. if (typeof ol_aboveheight=='undefined') var ol_aboveheight=0;
  75. if (typeof ol_capicon=='undefined') var ol_capicon="";
  76. if (typeof ol_frame=='undefined') var ol_frame=self;
  77. if (typeof ol_timeout=='undefined') var ol_timeout=0;
  78. if (typeof ol_function=='undefined') var ol_function=null;
  79. if (typeof ol_delay=='undefined') var ol_delay=0;
  80. if (typeof ol_hauto=='undefined') var ol_hauto=0;
  81. if (typeof ol_vauto=='undefined') var ol_vauto=0;
  82. if (typeof ol_closeclick=='undefined') var ol_closeclick=0;
  83. if (typeof ol_wrap=='undefined') var ol_wrap=0;
  84. if (typeof ol_followmouse=='undefined') var ol_followmouse=1;
  85. if (typeof ol_mouseoff=='undefined') var ol_mouseoff=0;
  86. if (typeof ol_closetitle=='undefined') var ol_closetitle='Close';
  87. if (typeof ol_compatmode=='undefined') var ol_compatmode=0;
  88. if (typeof ol_css=='undefined') var ol_css=CSSOFF;
  89. if (typeof ol_fgclass=='undefined') var ol_fgclass="";
  90. if (typeof ol_bgclass=='undefined') var ol_bgclass="";
  91. if (typeof ol_textfontclass=='undefined') var ol_textfontclass="";
  92. if (typeof ol_captionfontclass=='undefined') var ol_captionfontclass="";
  93. if (typeof ol_closefontclass=='undefined') var ol_closefontclass="";
  94. ////////
  95. // ARRAY CONFIGURATION
  96. ////////
  97. // You can use these arrays to store popup text here instead of in the html.
  98. if (typeof ol_texts=='undefined') var ol_texts = new Array("Text 0", "Text 1");
  99. if (typeof ol_caps=='undefined') var ol_caps = new Array("Caption 0", "Caption 1");
  100. ////////
  101. // END OF CONFIGURATION
  102. // Don't change anything below this line, all configuration is above.
  103. ////////
  104. ////////
  105. // INIT
  106. ////////
  107. // Runtime variables init. Don't change for config!
  108. var o3_text="";
  109. var o3_cap="";
  110. var o3_sticky=0;
  111. var o3_background="";
  112. var o3_close="Close";
  113. var o3_hpos=RIGHT;
  114. var o3_offsetx=2;
  115. var o3_offsety=2;
  116. var o3_fgcolor="";
  117. var o3_bgcolor="";
  118. var o3_textcolor="";
  119. var o3_capcolor="";
  120. var o3_closecolor="";
  121. var o3_width=100;
  122. var o3_border=1;
  123. var o3_cellpad=2;
  124. var o3_status="";
  125. var o3_autostatus=0;
  126. var o3_height=-1;
  127. var o3_snapx=0;
  128. var o3_snapy=0;
  129. var o3_fixx=-1;
  130. var o3_fixy=-1;
  131. var o3_relx=null;
  132. var o3_rely=null;
  133. var o3_fgbackground="";
  134. var o3_bgbackground="";
  135. var o3_padxl=0;
  136. var o3_padxr=0;
  137. var o3_padyt=0;
  138. var o3_padyb=0;
  139. var o3_fullhtml=0;
  140. var o3_vpos=BELOW;
  141. var o3_aboveheight=0;
  142. var o3_capicon="";
  143. var o3_textfont="Verdana,Arial,Helvetica";
  144. var o3_captionfont="Verdana,Arial,Helvetica";
  145. var o3_closefont="Verdana,Arial,Helvetica";
  146. var o3_textsize="1";
  147. var o3_captionsize="1";
  148. var o3_closesize="1";
  149. var o3_frame=self;
  150. var o3_timeout=0;
  151. var o3_timerid=0;
  152. var o3_allowmove=0;
  153. var o3_function=null; 
  154. var o3_delay=0;
  155. var o3_delayid=0;
  156. var o3_hauto=0;
  157. var o3_vauto=0;
  158. var o3_closeclick=0;
  159. var o3_wrap=0;
  160. var o3_followmouse=1;
  161. var o3_mouseoff=0;
  162. var o3_closetitle='';
  163. var o3_compatmode=0;
  164. var o3_css=CSSOFF;
  165. var o3_fgclass="";
  166. var o3_bgclass="";
  167. var o3_textfontclass="";
  168. var o3_captionfontclass="";
  169. var o3_closefontclass="";
  170. // Display state variables
  171. var o3_x = 0;
  172. var o3_y = 0;
  173. var o3_showingsticky = 0;
  174. var o3_removecounter = 0;
  175. // Our layer
  176. var over = null;
  177. var fnRef, hoveringSwitch = false;
  178. var olHideDelay;
  179. // Decide browser version
  180. var isMac = (navigator.userAgent.indexOf("Mac") != -1);
  181. var olOp = (navigator.userAgent.toLowerCase().indexOf('opera') > -1 && document.createTextNode);  // Opera 7
  182. var olNs4 = (navigator.appName=='Netscape' && parseInt(navigator.appVersion) == 4);
  183. var olNs6 = (document.getElementById) ? true : false;
  184. var olIe4 = (document.all) ? true : false;
  185. var olIe5 = false; 
  186. var olIe55 = false; // Added additional variable to identify IE5.5+
  187. var docRoot = 'document.body';
  188. // Resize fix for NS4.x to keep track of layer
  189. if (olNs4) {
  190. var oW = window.innerWidth;
  191. var oH = window.innerHeight;
  192. window.onresize = function() { if (oW != window.innerWidth || oH != window.innerHeight) location.reload(); }
  193. }
  194. // Microsoft Stupidity Check(tm).
  195. if (olIe4) {
  196. var agent = navigator.userAgent;
  197. if (/MSIE/.test(agent)) {
  198. var versNum = parseFloat(agent.match(/MSIE (d.d+).*/i)[1]);
  199. if (versNum >= 5){
  200. olIe5=true;
  201. olIe55=(versNum>=5.5&&!olOp) ? true : false;
  202. if (olNs6) olNs6=false;
  203. }
  204. }
  205. if (olNs6) olIe4 = false;
  206. }
  207. // Check for compatability mode.
  208. if (document.compatMode && document.compatMode == 'CSS1Compat') {
  209. docRoot= ((olIe4 && !olOp) ? 'document.documentElement' : docRoot);
  210. }
  211. // Add window onload handlers to indicate when all modules have been loaded
  212. // For Netscape 6+ and Mozilla, uses addEventListener method on the window object
  213. // For IE it uses the attachEvent method of the window object and for Netscape 4.x
  214. // it sets the window.onload handler to the OLonload_handler function for Bubbling
  215. if(window.addEventListener) window.addEventListener("load",OLonLoad_handler,false);
  216. else if (window.attachEvent) window.attachEvent("onload",OLonLoad_handler);
  217. // Capture events, alt. diffuses the overlib function.
  218. var olCheckMouseCapture = true;
  219. if ((olNs4 || olNs6 || olIe4)) {
  220. olMouseCapture();
  221. } else {
  222. overlib = no_overlib;
  223. nd = no_overlib;
  224. ver3fix = true;
  225. }
  226. ////////
  227. // PUBLIC FUNCTIONS
  228. ////////
  229. // overlib(arg0,...,argN)
  230. // Loads parameters into global runtime variables.
  231. function overlib() {
  232. if (!olLoaded || isExclusive(overlib.arguments)) return true;
  233. if (olCheckMouseCapture) olMouseCapture();
  234. if (over) cClick();
  235. // Load defaults to runtime.
  236.   olHideDelay=0;
  237. o3_text=ol_text;
  238. o3_cap=ol_cap;
  239. o3_sticky=ol_sticky;
  240. o3_background=ol_background;
  241. o3_close=ol_close;
  242. o3_hpos=ol_hpos;
  243. o3_offsetx=ol_offsetx;
  244. o3_offsety=ol_offsety;
  245. o3_fgcolor=ol_fgcolor;
  246. o3_bgcolor=ol_bgcolor;
  247. o3_textcolor=ol_textcolor;
  248. o3_capcolor=ol_capcolor;
  249. o3_closecolor=ol_closecolor;
  250. o3_width=ol_width;
  251. o3_border=ol_border;
  252. o3_cellpad=ol_cellpad;
  253. o3_status=ol_status;
  254. o3_autostatus=ol_autostatus;
  255. o3_height=ol_height;
  256. o3_snapx=ol_snapx;
  257. o3_snapy=ol_snapy;
  258. o3_fixx=ol_fixx;
  259. o3_fixy=ol_fixy;
  260. o3_relx=ol_relx;
  261. o3_rely=ol_rely;
  262. o3_fgbackground=ol_fgbackground;
  263. o3_bgbackground=ol_bgbackground;
  264. o3_padxl=ol_padxl;
  265. o3_padxr=ol_padxr;
  266. o3_padyt=ol_padyt;
  267. o3_padyb=ol_padyb;
  268. o3_fullhtml=ol_fullhtml;
  269. o3_vpos=ol_vpos;
  270. o3_aboveheight=ol_aboveheight;
  271. o3_capicon=ol_capicon;
  272. o3_textfont=ol_textfont;
  273. o3_captionfont=ol_captionfont;
  274. o3_closefont=ol_closefont;
  275. o3_textsize=ol_textsize;
  276. o3_captionsize=ol_captionsize;
  277. o3_closesize=ol_closesize;
  278. o3_timeout=ol_timeout;
  279. o3_function=ol_function;
  280. o3_delay=ol_delay;
  281. o3_hauto=ol_hauto;
  282. o3_vauto=ol_vauto;
  283. o3_closeclick=ol_closeclick;
  284. o3_wrap=ol_wrap;
  285. o3_followmouse=ol_followmouse;
  286. o3_mouseoff=ol_mouseoff;
  287. o3_closetitle=ol_closetitle;
  288. o3_css=ol_css;
  289. o3_compatmode=ol_compatmode;
  290. o3_fgclass=ol_fgclass;
  291. o3_bgclass=ol_bgclass;
  292. o3_textfontclass=ol_textfontclass;
  293. o3_captionfontclass=ol_captionfontclass;
  294. o3_closefontclass=ol_closefontclass;
  295. setRunTimeVariables();
  296. fnRef = '';
  297. // Special for frame support, over must be reset...
  298. o3_frame = ol_frame;
  299. if(!(over=createDivContainer())) return false;
  300. parseTokens('o3_', overlib.arguments);
  301. if (!postParseChecks()) return false;
  302. if (o3_delay == 0) {
  303. return runHook("olMain", FREPLACE);
  304.   } else {
  305. o3_delayid = setTimeout("runHook('olMain', FREPLACE)", o3_delay);
  306. return false;
  307. }
  308. }
  309. // Clears popups if appropriate
  310. function nd(time) {
  311. if (olLoaded && !isExclusive()) {
  312. hideDelay(time);  // delay popup close if time specified
  313. if (o3_removecounter >= 1) { o3_showingsticky = 0 };
  314. if (o3_showingsticky == 0) {
  315. o3_allowmove = 0;
  316. if (over != null && o3_timerid == 0) runHook("hideObject", FREPLACE, over);
  317. } else {
  318. o3_removecounter++;
  319. }
  320. }
  321. return true;
  322. }
  323. // The Close onMouseOver function for stickies
  324. function cClick() {
  325. if (olLoaded) {
  326. runHook("hideObject", FREPLACE, over);
  327. o3_showingsticky = 0;
  328. }
  329. return false;
  330. }
  331. // Method for setting page specific defaults.
  332. function overlib_pagedefaults() {
  333. parseTokens('ol_', overlib_pagedefaults.arguments);
  334. }
  335. ////////
  336. // OVERLIB MAIN FUNCTION
  337. ////////
  338. // This function decides what it is we want to display and how we want it done.
  339. function olMain() {
  340. var layerhtml, styleType;
  341.   runHook("olMain", FBEFORE);
  342.  
  343. if (o3_background!="" || o3_fullhtml) {
  344. // Use background instead of box.
  345. layerhtml = runHook('ol_content_background', FALTERNATE, o3_css, o3_text, o3_background, o3_fullhtml);
  346. } else {
  347. // They want a popup box.
  348. styleType = (pms[o3_css-1-pmStart] == "cssoff" || pms[o3_css-1-pmStart] == "cssclass");
  349. // Prepare popup background
  350. if (o3_fgbackground != "") o3_fgbackground = "background=""+o3_fgbackground+""";
  351. if (o3_bgbackground != "") o3_bgbackground = (styleType ? "background=""+o3_bgbackground+""" : o3_bgbackground);
  352. // Prepare popup colors
  353. if (o3_fgcolor != "") o3_fgcolor = (styleType ? "bgcolor=""+o3_fgcolor+""" : o3_fgcolor);
  354. if (o3_bgcolor != "") o3_bgcolor = (styleType ? "bgcolor=""+o3_bgcolor+""" : o3_bgcolor);
  355. // Prepare popup height
  356. if (o3_height > 0) o3_height = (styleType ? "height=""+o3_height+""" : o3_height);
  357. else o3_height = "";
  358. // Decide which kinda box.
  359. if (o3_cap=="") {
  360. // Plain
  361. layerhtml = runHook('ol_content_simple', FALTERNATE, o3_css, o3_text);
  362. } else {
  363. // With caption
  364. if (o3_sticky) {
  365. // Show close text
  366. layerhtml = runHook('ol_content_caption', FALTERNATE, o3_css, o3_text, o3_cap, o3_close);
  367. } else {
  368. // No close text
  369. layerhtml = runHook('ol_content_caption', FALTERNATE, o3_css, o3_text, o3_cap, "");
  370. }
  371. }
  372. }
  373. // We want it to stick!
  374. if (o3_sticky) {
  375. if (o3_timerid > 0) {
  376. clearTimeout(o3_timerid);
  377. o3_timerid = 0;
  378. }
  379. o3_showingsticky = 1;
  380. o3_removecounter = 0;
  381. }
  382. // Created a separate routine to generate the popup to make it easier
  383. // to implement a plugin capability
  384. if (!runHook("createPopup", FREPLACE, layerhtml)) return false;
  385. // Prepare status bar
  386. if (o3_autostatus > 0) {
  387. o3_status = o3_text;
  388. if (o3_autostatus > 1) o3_status = o3_cap;
  389. }
  390. // When placing the layer the first time, even stickies may be moved.
  391. o3_allowmove = 0;
  392. // Initiate a timer for timeout
  393. if (o3_timeout > 0) {          
  394. if (o3_timerid > 0) clearTimeout(o3_timerid);
  395. o3_timerid = setTimeout("cClick()", o3_timeout);
  396. }
  397. // Show layer
  398. runHook("disp", FREPLACE, o3_status);
  399. runHook("olMain", FAFTER);
  400. return (olOp && event && event.type == 'mouseover' && !o3_status) ? '' : (o3_status != '');
  401. }
  402. ////////
  403. // LAYER GENERATION FUNCTIONS
  404. ////////
  405. // These functions just handle popup content with tags that should adhere to the W3C standards specification.
  406. // Makes simple table without caption
  407. function ol_content_simple(text) {
  408. txt='<table width="'+o3_width+ '" border="0" cellpadding="'+o3_border+'" cellspacing="0" '+(o3_bgclass ? 'class="'+o3_bgclass+'"' : o3_bgcolor+' '+o3_height)+'><tr><td><table width="100%" border="0" cellpadding="' + o3_cellpad + '" cellspacing="0" '+(o3_fgclass ? 'class="'+o3_fgclass+'"' : o3_fgcolor+' '+o3_fgbackground+' '+o3_height)+'><tr><td valign="TOP"'+(o3_textfontclass ? ' class="'+o3_textfontclass+'">' : '>')+(o3_textfontclass ? '' : wrapStr(0,o3_textsize,'text'))+text+(o3_textfontclass ? '' : wrapStr(1,o3_textsize))+'</td></tr></table></td></tr></table>';
  409. set_background("");
  410. return txt;
  411. }
  412. // Makes table with caption and optional close link
  413. function ol_content_caption(text,title,close) {
  414. var nameId;
  415. closing="";
  416. closeevent="onmouseover";
  417. if (o3_closeclick==1) closeevent= (o3_closetitle ? "title='" + o3_closetitle +"'" : "") + " onclick";
  418. if (o3_capicon!="") {
  419. nameId=' hspace="5"'+' align="middle" alt=""';
  420. if (typeof o3_dragimg!='undefined'&&o3_dragimg) nameId=' hspace="5"'+' name="'+o3_dragimg+'" id="'+o3_dragimg+'" align="middle" alt="Drag Enabled" title="Drag Enabled"';
  421. o3_capicon='<img src="'+o3_capicon+'"'+nameId+' />';
  422. }
  423. if (close != "") 
  424. closing='<td '+(!o3_compatmode && o3_closefontclass ? 'class="'+o3_closefontclass : 'align="RIGHT')+'"><a href="javascript:return '+fnRef+'cClick();"'+((o3_compatmode && o3_closefontclass) ? ' class="' + o3_closefontclass + '" ' : ' ')+closeevent+'="return '+fnRef+'cClick();">'+(o3_closefontclass ? '' : wrapStr(0,o3_closesize,'close'))+close+(o3_closefontclass ? '' : wrapStr(1,o3_closesize,'close'))+'</a></td>';
  425. txt='<table width="'+o3_width+ '" border="0" cellpadding="'+o3_border+'" cellspacing="0" '+(o3_bgclass ? 'class="'+o3_bgclass+'"' : o3_bgcolor+' '+o3_bgbackground+' '+o3_height)+'><tr><td><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td'+(o3_captionfontclass ? ' class="'+o3_captionfontclass+'">' : '>')+(o3_captionfontclass ? '' : '<b>'+wrapStr(0,o3_captionsize,'caption'))+o3_capicon+title+(o3_captionfontclass ? '' : wrapStr(1,o3_captionsize)+'</b>')+'</td>'+closing+'</tr></table><table width="100%" border="0" cellpadding="' + o3_cellpad + '" cellspacing="0" '+(o3_fgclass ? 'class="'+o3_fgclass+'"' : o3_fgcolor+' '+o3_fgbackground+' '+o3_height)+'><tr><td valign="TOP"'+(o3_textfontclass ? ' class="'+o3_textfontclass+'">' :'>')+(o3_textfontclass ? '' : wrapStr(0,o3_textsize,'text'))+text+(o3_textfontclass ? '' : wrapStr(1,o3_textsize)) + '</td></tr></table></td></tr></table>';
  426. set_background("");
  427. return txt;
  428. }
  429. // Sets the background picture,padding and lots more. :)
  430. function ol_content_background(text,picture,hasfullhtml) {
  431. if (hasfullhtml) {
  432. txt=text;
  433. } else {
  434. txt='<table width="'+o3_width+'" border="0" cellpadding="0" cellspacing="0" height="'+o3_height+'"><tr><td colspan="3" height="'+o3_padyt+'"></td></tr><tr><td width="'+o3_padxl+'"></td><td valign="TOP" width="'+(o3_width-o3_padxl-o3_padxr)+(o3_textfontclass ? '" class="'+o3_textfontclass : '')+'">'+(o3_textfontclass ? '' : wrapStr(0,o3_textsize,'text'))+text+(o3_textfontclass ? '' : wrapStr(1,o3_textsize))+'</td><td width="'+o3_padxr+'"></td></tr><tr><td colspan="3" height="'+o3_padyb+'"></td></tr></table>';
  435. }
  436. set_background(picture);
  437. return txt;
  438. }
  439. // Loads a picture into the div.
  440. function set_background(pic) {
  441. if (pic == "") {
  442. if (olNs4) {
  443. over.background.src = null; 
  444. } else if (over.style) {
  445. over.style.backgroundImage = "none";
  446. }
  447. } else {
  448. if (olNs4) {
  449. over.background.src = pic;
  450. } else if (over.style) {
  451. over.style.width=o3_width + 'px';
  452. over.style.backgroundImage = "url("+pic+")";
  453. }
  454. }
  455. }
  456. ////////
  457. // HANDLING FUNCTIONS
  458. ////////
  459. var olShowId=-1;
  460. // Displays the popup
  461. function disp(statustext) {
  462. runHook("disp", FBEFORE);
  463. if (o3_allowmove == 0) {
  464. runHook("placeLayer", FREPLACE);
  465. (olNs6&&olShowId<0) ? olShowId=setTimeout("runHook('showObject', FREPLACE, over)", 1) : runHook("showObject", FREPLACE, over);
  466. o3_allowmove = (o3_sticky || o3_followmouse==0) ? 0 : 1;
  467. }
  468. runHook("disp", FAFTER);
  469. if (statustext != "") self.status = statustext;
  470. }
  471. // Creates the actual popup structure
  472. function createPopup(lyrContent){
  473. runHook("createPopup", FBEFORE);
  474. if (o3_wrap && !(olNs4 || olOp)) {
  475. if (olIe4) {
  476. over.style.pixelWidth = 0;
  477. } else if (olNs6) {
  478. repositionTo(over, 0, -over.offsetHeight);
  479. }
  480. }
  481. layerWrite(lyrContent);
  482. // Have to set o3_width for placeLayer() routine if o3_wrap is turned on
  483. if (o3_wrap) o3_width=(olNs4 ? over.clip.width : over.offsetWidth);
  484. runHook("createPopup", FAFTER, lyrContent);
  485. return true;
  486. }
  487. // Decides where we want the popup.
  488. function placeLayer() {
  489. var placeX, placeY, widthFix = 0;
  490. // HORIZONTAL PLACEMENT, re-arranged to work in Safari
  491. if (o3_frame.innerWidth) { 
  492. widthFix=Math.ceil(1.2*(o3_frame.outerWidth - o3_frame.innerWidth));
  493.     widthFix = (widthFix > 50) ? 0 : widthFix;
  494. iwidth=o3_frame.innerWidth;
  495. } else if (eval('o3_frame.'+docRoot)&&eval("typeof o3_frame."+docRoot+".clientWidth=='number'")&&eval('o3_frame.'+docRoot+'.clientWidth')) {
  496. iwidth=eval('o3_frame.'+docRoot+'.clientWidth');
  497. }
  498. // Horizontal scroll offset
  499. winoffset=(olIe4) ? eval('o3_frame.'+docRoot+'.scrollLeft') : o3_frame.pageXOffset;
  500. placeX = runHook('horizontalPlacement',FCHAIN,iwidth,winoffset,widthFix);
  501. // VERTICAL PLACEMENT, re-arranged to work in Safari
  502. if (o3_frame.innerHeight) {
  503. iheight=o3_frame.innerHeight;
  504. } else if (eval('o3_frame.'+docRoot)&&eval("typeof o3_frame."+docRoot+".clientHeight=='number'")&&eval('o3_frame.'+docRoot+'.clientHeight')) { 
  505. iheight=eval('o3_frame.'+docRoot+'.clientHeight');
  506. }
  507. // Vertical scroll offset
  508. scrolloffset=(olIe4) ? eval('o3_frame.'+docRoot+'.scrollTop') : o3_frame.pageYOffset;
  509. placeY = runHook('verticalPlacement',FCHAIN,iheight,scrolloffset);
  510. // Actually move the object.
  511. repositionTo(over, placeX, placeY);
  512. }
  513. // Moves the layer
  514. function olMouseMove(e) {
  515. var e = (e) ? e : event;
  516. if (e.pageX) {
  517. o3_x = e.pageX;
  518. o3_y = e.pageY;
  519. } else if (e.clientX) {
  520. o3_x = eval('e.clientX+o3_frame.'+docRoot+'.scrollLeft');
  521. o3_y = eval('e.clientY+o3_frame.'+docRoot+'.scrollTop');
  522. }
  523. if (o3_allowmove == 1) runHook("placeLayer", FREPLACE);
  524. // MouseOut handler
  525. if (hoveringSwitch && !olNs4 && runHook("cursorOff", FREPLACE)) {
  526. (olHideDelay ? hideDelay(olHideDelay) : cClick());
  527. hoveringSwitch = !hoveringSwitch;
  528. }
  529. }
  530. // Fake function for 3.0 users.
  531. function no_overlib() { return ver3fix; }
  532. // Capture the mouse and chain other scripts.
  533. function olMouseCapture() {
  534. capExtent = document;
  535. var fN, mseHandler = olMouseMove;
  536. var re = /function[ ]+(w+)(/;
  537. if (document.onmousemove || (!olIe4 && window.onmousemove)) {
  538. if (window.onmousemove) capExtent = window;
  539. fN = capExtent.onmousemove.toString().match(re);
  540. if (fN == null || fN[1] == 'anonymous' || fN[1] == 'olMouseMove') {
  541. olCheckMouseCapture = false;
  542. return;
  543. }
  544. var str = fN[1]+'(e); ' + 'olMouseMove(e); ';
  545. mseHandler = new Function('e', str);
  546. }
  547. capExtent.onmousemove = mseHandler;
  548. if (olNs4) capExtent.captureEvents(Event.MOUSEMOVE);
  549. }
  550. ////////
  551. // PARSING FUNCTIONS
  552. ////////
  553. // Does the actual command parsing.
  554. function parseTokens(pf, ar) {
  555. // What the next argument is expected to be.
  556. var v, mode=-1, par = (pf != 'ol_');
  557. var fnMark = (par && !ar.length ? 1 : 0);
  558. for (i = 0; i < ar.length; i++) {
  559. if (mode < 0) {
  560. // Arg is maintext,unless its a number between pmStart and pmUpper
  561. // then its a command.
  562. if (typeof ar[i] == 'number' && ar[i] > pmStart && ar[i] < pmUpper) {
  563. fnMark = (par ? 1 : 0);
  564. i--;   // backup one so that the next block can parse it
  565. } else {
  566. switch(pf) {
  567. case 'ol_':
  568. ol_text = ar[i].toString();
  569. break;
  570. default:
  571. o3_text=ar[i].toString();  
  572. }
  573. }
  574. mode = 0;
  575. } else {
  576. // Note: NS4 doesn't like switch cases with vars.
  577. if (ar[i] >= pmCount || ar[i]==DONOTHING) { continue; }
  578. if (ar[i]==INARRAY) { fnMark = 0; eval(pf+'text=ol_texts['+ar[++i]+'].toString()'); continue; }
  579. if (ar[i]==CAPARRAY) { eval(pf+'cap=ol_caps['+ar[++i]+'].toString()'); continue; }
  580. if (ar[i]==STICKY) { if (pf!='ol_') eval(pf+'sticky=1'); continue; }
  581. if (ar[i]==BACKGROUND) { eval(pf+'background="'+ar[++i]+'"'); continue; }
  582. if (ar[i]==NOCLOSE) { if (pf!='ol_') opt_NOCLOSE(); continue; }
  583. if (ar[i]==CAPTION) { eval(pf+"cap='"+escSglQuote(ar[++i])+"'"); continue; }
  584. if (ar[i]==CENTER || ar[i]==LEFT || ar[i]==RIGHT) { eval(pf+'hpos='+ar[i]); if(pf!='ol_') olHautoFlag=1; continue; }
  585. if (ar[i]==OFFSETX) { eval(pf+'offsetx='+ar[++i]); continue; }
  586. if (ar[i]==OFFSETY) { eval(pf+'offsety='+ar[++i]); continue; }
  587. if (ar[i]==FGCOLOR) { eval(pf+'fgcolor="'+ar[++i]+'"'); continue; }
  588. if (ar[i]==BGCOLOR) { eval(pf+'bgcolor="'+ar[++i]+'"'); continue; }
  589. if (ar[i]==TEXTCOLOR) { eval(pf+'textcolor="'+ar[++i]+'"'); continue; }
  590. if (ar[i]==CAPCOLOR) { eval(pf+'capcolor="'+ar[++i]+'"'); continue; }
  591. if (ar[i]==CLOSECOLOR) { eval(pf+'closecolor="'+ar[++i]+'"'); continue; }
  592. if (ar[i]==WIDTH) { eval(pf+'width='+ar[++i]); continue; }
  593. if (ar[i]==BORDER) { eval(pf+'border='+ar[++i]); continue; }
  594. if (ar[i]==CELLPAD) { i=opt_MULTIPLEARGS(++i,ar,(pf+'cellpad')); continue; }
  595. if (ar[i]==STATUS) { eval(pf+"status='"+escSglQuote(ar[++i])+"'"); continue; }
  596. if (ar[i]==AUTOSTATUS) { eval(pf +'autostatus=('+pf+'autostatus == 1) ? 0 : 1'); continue; }
  597. if (ar[i]==AUTOSTATUSCAP) { eval(pf +'autostatus=('+pf+'autostatus == 2) ? 0 : 2'); continue; }
  598. if (ar[i]==HEIGHT) { eval(pf+'height='+pf+'aboveheight='+ar[++i]); continue; } // Same param again.
  599. if (ar[i]==CLOSETEXT) { eval(pf+"close='"+escSglQuote(ar[++i])+"'"); continue; }
  600. if (ar[i]==SNAPX) { eval(pf+'snapx='+ar[++i]); continue; }
  601. if (ar[i]==SNAPY) { eval(pf+'snapy='+ar[++i]); continue; }
  602. if (ar[i]==FIXX) { eval(pf+'fixx='+ar[++i]); continue; }
  603. if (ar[i]==FIXY) { eval(pf+'fixy='+ar[++i]); continue; }
  604. if (ar[i]==RELX) { eval(pf+'relx='+ar[++i]); continue; }
  605. if (ar[i]==RELY) { eval(pf+'rely='+ar[++i]); continue; }
  606. if (ar[i]==FGBACKGROUND) { eval(pf+'fgbackground="'+ar[++i]+'"'); continue; }
  607. if (ar[i]==BGBACKGROUND) { eval(pf+'bgbackground="'+ar[++i]+'"'); continue; }
  608. if (ar[i]==PADX) { eval(pf+'padxl='+ar[++i]); eval(pf+'padxr='+ar[++i]); continue; }
  609. if (ar[i]==PADY) { eval(pf+'padyt='+ar[++i]); eval(pf+'padyb='+ar[++i]); continue; }
  610. if (ar[i]==FULLHTML) { if (pf!='ol_') eval(pf+'fullhtml=1'); continue; }
  611. if (ar[i]==BELOW || ar[i]==ABOVE) { eval(pf+'vpos='+ar[i]); if (pf!='ol_') olVautoFlag=1; continue; }
  612. if (ar[i]==CAPICON) { eval(pf+'capicon="'+ar[++i]+'"'); continue; }
  613. if (ar[i]==TEXTFONT) { eval(pf+"textfont='"+escSglQuote(ar[++i])+"'"); continue; }
  614. if (ar[i]==CAPTIONFONT) { eval(pf+"captionfont='"+escSglQuote(ar[++i])+"'"); continue; }
  615. if (ar[i]==CLOSEFONT) { eval(pf+"closefont='"+escSglQuote(ar[++i])+"'"); continue; }
  616. if (ar[i]==TEXTSIZE) { eval(pf+'textsize="'+ar[++i]+'"'); continue; }
  617. if (ar[i]==CAPTIONSIZE) { eval(pf+'captionsize="'+ar[++i]+'"'); continue; }
  618. if (ar[i]==CLOSESIZE) { eval(pf+'closesize="'+ar[++i]+'"'); continue; }
  619. if (ar[i]==TIMEOUT) { eval(pf+'timeout='+ar[++i]); continue; }
  620. if (ar[i]==FUNCTION) { if (pf=='ol_') { if (typeof ar[i+1]!='number') { v=ar[++i]; ol_function=(typeof v=='function' ? v : null); }} else {fnMark = 0; v = null; if (typeof ar[i+1]!='number') v = ar[++i];  opt_FUNCTION(v); } continue; }
  621. if (ar[i]==DELAY) { eval(pf+'delay='+ar[++i]); continue; }
  622. if (ar[i]==HAUTO) { eval(pf+'hauto=('+pf+'hauto == 0) ? 1 : 0'); continue; }
  623. if (ar[i]==VAUTO) { eval(pf+'vauto=('+pf+'vauto == 0) ? 1 : 0'); continue; }
  624. if (ar[i]==CLOSECLICK) { eval(pf +'closeclick=('+pf+'closeclick == 0) ? 1 : 0'); continue; }
  625. if (ar[i]==WRAP) { eval(pf +'wrap=('+pf+'wrap == 0) ? 1 : 0'); continue; }
  626. if (ar[i]==FOLLOWMOUSE) { eval(pf +'followmouse=('+pf+'followmouse == 1) ? 0 : 1'); continue; }
  627. if (ar[i]==MOUSEOFF) { eval(pf +'mouseoff=('+pf+'mouseoff==0) ? 1 : 0'); v=ar[i+1]; if (pf != 'ol_' && eval(pf+'mouseoff') && typeof v == 'number' && (v < pmStart || v > pmUpper)) olHideDelay=ar[++i]; continue; }
  628. if (ar[i]==CLOSETITLE) { eval(pf+"closetitle='"+escSglQuote(ar[++i])+"'"); continue; }
  629. if (ar[i]==CSSOFF||ar[i]==CSSCLASS) { eval(pf+'css='+ar[i]); continue; }
  630. if (ar[i]==COMPATMODE) { eval(pf+'compatmode=('+pf+'compatmode==0) ? 1 : 0'); continue; }
  631. if (ar[i]==FGCLASS) { eval(pf+'fgclass="'+ar[++i]+'"'); continue; }
  632. if (ar[i]==BGCLASS) { eval(pf+'bgclass="'+ar[++i]+'"'); continue; }
  633. if (ar[i]==TEXTFONTCLASS) { eval(pf+'textfontclass="'+ar[++i]+'"'); continue; }
  634. if (ar[i]==CAPTIONFONTCLASS) { eval(pf+'captionfontclass="'+ar[++i]+'"'); continue; }
  635. if (ar[i]==CLOSEFONTCLASS) { eval(pf+'closefontclass="'+ar[++i]+'"'); continue; }
  636. i = parseCmdLine(pf, i, ar);
  637. }
  638. }
  639. if (fnMark && o3_function) o3_text = o3_function();
  640. if ((pf == 'o3_') && o3_wrap) {
  641. o3_width = 0;
  642. if (olOp || (olIe4 && isMac)) {
  643. var tReg=/<.*n*>/ig;
  644. if (!tReg.test(o3_text)) o3_text = o3_text.replace(/[ ]+/g, '&nbsp;');
  645. if (!tReg.test(o3_cap))o3_cap = o3_cap.replace(/[ ]+/g, '&nbsp;');
  646. }
  647. }
  648. if ((pf == 'o3_') && o3_sticky) {
  649. if (!o3_close && (o3_frame != ol_frame)) o3_close = ol_close;
  650. if (o3_mouseoff && (o3_frame == ol_frame)) opt_NOCLOSE(' ');
  651. }
  652. }
  653. ////////
  654. // LAYER FUNCTIONS
  655. ////////
  656. // Writes to a layer
  657. function layerWrite(txt) {
  658. txt += "n";
  659. if (olNs4) {
  660. var lyr = o3_frame.document.layers['overDiv'].document
  661. lyr.write(txt)
  662. lyr.close()
  663. } else if (typeof over.innerHTML != 'undefined') {
  664. if (olIe5 && isMac) over.innerHTML = '';
  665. over.innerHTML = txt;
  666. } else {
  667. range = o3_frame.document.createRange();
  668. range.setStartAfter(over);
  669. domfrag = range.createContextualFragment(txt);
  670. while (over.hasChildNodes()) {
  671. over.removeChild(over.lastChild);
  672. }
  673. over.appendChild(domfrag);
  674. }
  675. }
  676. // Make an object visible
  677. function showObject(obj) {
  678. runHook("showObject", FBEFORE);
  679. var theObj=(olNs4 ? obj : obj.style);
  680. theObj.visibility = 'visible';
  681. runHook("showObject", FAFTER);
  682. }
  683. // Hides an object
  684. function hideObject(obj) {
  685. runHook("hideObject", FBEFORE);
  686. var theObj=(olNs4 ? obj : obj.style);
  687. if (olNs6 && olShowId>0) { clearTimeout(olShowId); olShowId=0; }
  688. theObj.visibility = 'hidden';
  689. if (o3_timerid > 0) clearTimeout(o3_timerid);
  690. if (o3_delayid > 0) clearTimeout(o3_delayid);
  691. o3_timerid = 0;
  692. o3_delayid = 0;
  693. self.status = "";
  694. if (obj.onmouseout || obj.onmouseover) {
  695. if (olNs4) obj.releaseEvents(Event.MOUSEOUT || Event.MOUSEOVER);
  696. obj.onmouseout = obj.onmouseover = null;
  697. }
  698. runHook("hideObject", FAFTER);
  699. }
  700. // Move a layer
  701. function repositionTo(obj, xL, yL) {
  702. var theObj=(olNs4 ? obj : obj.style);
  703. theObj.left = xL + (!olNs4 ? 'px' : 0);
  704. theObj.top = yL + (!olNs4 ? 'px' : 0);
  705. }
  706. // Check position of cursor relative to overDiv DIVision; mouseOut function
  707. function cursorOff() {
  708. var left = parseInt(over.style.left);
  709. var top = parseInt(over.style.top);
  710. var right = left + (over.offsetWidth >= parseInt(o3_width) ? over.offsetWidth : parseInt(o3_width));
  711. var bottom = top + (over.offsetHeight >= o3_aboveheight ? over.offsetHeight : o3_aboveheight);
  712. if (o3_x < left || o3_x > right || o3_y < top || o3_y > bottom) return true;
  713. return false;
  714. }
  715. ////////
  716. // COMMAND FUNCTIONS
  717. ////////
  718. // Calls callme or the default function.
  719. function opt_FUNCTION(callme) {
  720. o3_text = (callme ? (typeof callme=='string' ? (/.+(.*)/.test(callme) ? eval(callme) : callme) : callme()) : (o3_function ? o3_function() : 'No Function'));
  721. return 0;
  722. }
  723. // Handle hovering
  724. function opt_NOCLOSE(unused) {
  725. if (!unused) o3_close = "";
  726. if (olNs4) {
  727. over.captureEvents(Event.MOUSEOUT || Event.MOUSEOVER);
  728. over.onmouseover = function () { if (o3_timerid > 0) { clearTimeout(o3_timerid); o3_timerid = 0; } }
  729. over.onmouseout = function (e) { if (olHideDelay) hideDelay(olHideDelay); else cClick(e); }
  730. } else {
  731. over.onmouseover = function () {hoveringSwitch = true; if (o3_timerid > 0) { clearTimeout(o3_timerid); o3_timerid =0; } }
  732. }
  733. return 0;
  734. }
  735. // Function to scan command line arguments for multiples
  736. function opt_MULTIPLEARGS(i, args, parameter) {
  737.   var k=i, re, pV, str='';
  738.   for(k=i; k<args.length; k++) {
  739. if(typeof args[k] == 'number' && args[k]>pmStart) break;
  740. str += args[k] + ',';
  741. }
  742. if (str) str = str.substring(0,--str.length);
  743. k--;  // reduce by one so the for loop this is in works correctly
  744. pV=(olNs4 && /cellpad/i.test(parameter)) ? str.split(',')[0] : str;
  745. eval(parameter + '="' + pV + '"');
  746. return k;
  747. }
  748. // Remove &nbsp; in texts when done.
  749. function nbspCleanup() {
  750. if (o3_wrap && (olOp || (olIe4 && isMac))) {
  751. o3_text = o3_text.replace(/&nbsp;/g, ' ');
  752. o3_cap = o3_cap.replace(/&nbsp;/g, ' ');
  753. }
  754. }
  755. // Escape embedded single quotes in text strings
  756. function escSglQuote(str) {
  757.   return str.toString().replace(/'/g,"\'");
  758. }
  759. // Onload handler for window onload event
  760. function OLonLoad_handler(e) {
  761. var re = /w+(.*)[;s]+/g, olre = /overlib(|nd(|cClick(/, fn, l, i;
  762. if(!olLoaded) olLoaded=1;
  763.   // Remove it for Gecko based browsers
  764. if(window.removeEventListener && e.eventPhase == 3) window.removeEventListener("load",OLonLoad_handler,false);
  765. else if(window.detachEvent) { // and for IE and Opera 4.x but execute calls to overlib, nd, or cClick()
  766. window.detachEvent("onload",OLonLoad_handler);
  767. var fN = document.body.getAttribute('onload');
  768. if (fN) {
  769. fN=fN.toString().match(re);
  770. if (fN && fN.length) {
  771. for (i=0; i<fN.length; i++) {
  772. if (/anonymous/.test(fN[i])) continue;
  773. while((l=fN[i].search(/)[;s]+/)) != -1) {
  774. fn=fN[i].substring(0,l+1);
  775. fN[i] = fN[i].substring(l+2);
  776. if (olre.test(fn)) eval(fn);
  777. }
  778. }
  779. }
  780. }
  781. }
  782. }
  783. // Wraps strings in Layer Generation Functions with the correct tags
  784. //    endWrap true(if end tag) or false if start tag
  785. //    fontSizeStr - font size string such as '1' or '10px'
  786. //    whichString is being wrapped -- 'text', 'caption', or 'close'
  787. function wrapStr(endWrap,fontSizeStr,whichString) {
  788. var fontStr, fontColor, isClose=((whichString=='close') ? 1 : 0), hasDims=/[%-a-z]+$/.test(fontSizeStr);
  789. fontSizeStr = (olNs4) ? (!hasDims ? fontSizeStr : '1') : fontSizeStr;
  790. if (endWrap) return (hasDims&&!olNs4) ? (isClose ? '</span>' : '</div>') : '</font>';
  791. else {
  792. fontStr='o3_'+whichString+'font';
  793. fontColor='o3_'+((whichString=='caption')? 'cap' : whichString)+'color';
  794. return (hasDims&&!olNs4) ? (isClose ? '<span style="font-family: '+quoteMultiNameFonts(eval(fontStr))+'; color: '+eval(fontColor)+'; font-size: '+fontSizeStr+';">' : '<div style="font-family: '+quoteMultiNameFonts(eval(fontStr))+'; color: '+eval(fontColor)+'; font-size: '+fontSizeStr+';">') : '<font face="'+eval(fontStr)+'" color="'+eval(fontColor)+'" size="'+(parseInt(fontSizeStr)>7 ? '7' : fontSizeStr)+'">';
  795. }
  796. }
  797. // Quotes Multi word font names; needed for CSS Standards adherence in font-family
  798. function quoteMultiNameFonts(theFont) {
  799. var v, pM=theFont.split(',');
  800. for (var i=0; i<pM.length; i++) {
  801. v=pM[i];
  802. v=v.replace(/^s+/,'').replace(/s+$/,'');
  803. if(/s/.test(v) && !/['"]/.test(v)) {
  804. v="'"+v+"'";
  805. pM[i]=v;
  806. }
  807. }
  808. return pM.join();
  809. }
  810. // dummy function which will be overridden 
  811. function isExclusive(args) {
  812. return false;
  813. }
  814. // function will delay close by time milliseconds
  815. function hideDelay(time) {
  816. if (time&&!o3_delay) {
  817. if (o3_timerid > 0) clearTimeout(o3_timerid);
  818. o3_timerid=setTimeout("cClick()",(o3_timeout=time));
  819. }
  820. }
  821. // Was originally in the placeLayer() routine; separated out for future ease
  822. function horizontalPlacement(browserWidth, horizontalScrollAmount, widthFix) {
  823. var placeX, iwidth=browserWidth, winoffset=horizontalScrollAmount;
  824. var parsedWidth = parseInt(o3_width);
  825. if (o3_fixx > -1 || o3_relx != null) {
  826. // Fixed position
  827. placeX=(o3_relx != null ? ( o3_relx < 0 ? winoffset +o3_relx+ iwidth - parsedWidth - widthFix : winoffset+o3_relx) : o3_fixx);
  828. } else {  
  829. // If HAUTO, decide what to use.
  830. if (o3_hauto == 1) {
  831. if ((o3_x - winoffset) > (iwidth / 2)) {
  832. o3_hpos = LEFT;
  833. } else {
  834. o3_hpos = RIGHT;
  835. }
  836. }  
  837. // From mouse
  838. if (o3_hpos == CENTER) { // Center
  839. placeX = o3_x+o3_offsetx-(parsedWidth/2);
  840. if (placeX < winoffset) placeX = winoffset;
  841. }
  842. if (o3_hpos == RIGHT) { // Right
  843. placeX = o3_x+o3_offsetx;
  844. if ((placeX+parsedWidth) > (winoffset+iwidth - widthFix)) {
  845. placeX = iwidth+winoffset - parsedWidth - widthFix;
  846. if (placeX < 0) placeX = 0;
  847. }
  848. }
  849. if (o3_hpos == LEFT) { // Left
  850. placeX = o3_x-o3_offsetx-parsedWidth;
  851. if (placeX < winoffset) placeX = winoffset;
  852. }  
  853. // Snapping!
  854. if (o3_snapx > 1) {
  855. var snapping = placeX % o3_snapx;
  856. if (o3_hpos == LEFT) {
  857. placeX = placeX - (o3_snapx+snapping);
  858. } else {
  859. // CENTER and RIGHT
  860. placeX = placeX+(o3_snapx - snapping);
  861. }
  862. if (placeX < winoffset) placeX = winoffset;
  863. }
  864. }
  865. return placeX;
  866. }
  867. // was originally in the placeLayer() routine; separated out for future ease
  868. function verticalPlacement(browserHeight,verticalScrollAmount) {
  869. var placeY, iheight=browserHeight, scrolloffset=verticalScrollAmount;
  870. var parsedHeight=(o3_aboveheight ? parseInt(o3_aboveheight) : (olNs4 ? over.clip.height : over.offsetHeight));
  871. if (o3_fixy > -1 || o3_rely != null) {
  872. // Fixed position
  873. placeY=(o3_rely != null ? (o3_rely < 0 ? scrolloffset+o3_rely+iheight - parsedHeight : scrolloffset+o3_rely) : o3_fixy);
  874. } else {
  875. // If VAUTO, decide what to use.
  876. if (o3_vauto == 1) {  
  877. if ((o3_y - scrolloffset) > (iheight/2)) {
  878. o3_vpos = ABOVE;
  879. } else {
  880. o3_vpos = BELOW;
  881. }
  882. }
  883. // From mouse
  884. if (o3_vpos == ABOVE) {
  885. if (o3_aboveheight == 0) o3_aboveheight = parsedHeight; 
  886. placeY = o3_y - (o3_aboveheight+o3_offsety);
  887. if (placeY < scrolloffset) placeY = scrolloffset;
  888. } else {
  889. // BELOW
  890. placeY = o3_y+o3_offsety;
  891. // Snapping!
  892. if (o3_snapy > 1) {
  893. var snapping = placeY % o3_snapy;  
  894. if (o3_aboveheight > 0 && o3_vpos == ABOVE) {
  895. placeY = placeY - (o3_snapy+snapping);
  896. } else {
  897. placeY = placeY+(o3_snapy - snapping);
  898. if (placeY < scrolloffset) placeY = scrolloffset;
  899. }
  900. }
  901. return placeY;
  902. }
  903. // checks positioning flags
  904. function checkPositionFlags() {
  905. if (olHautoFlag) olHautoFlag = o3_hauto=0;
  906. if (olVautoFlag) olVautoFlag = o3_vauto=0;
  907. return true;
  908. }
  909. // create the div container for popup content if it doesn't exist
  910. function createDivContainer(id,frm,zValue) {
  911. id = (id || 'overDiv'), frm = (frm || o3_frame), zValue = (zValue || 1000);
  912. var objRef, divContainer = layerReference(id);
  913. if (divContainer == null) {
  914. if (olNs4) {
  915. divContainer = frm.document.layers[id] = new Layer(window.innerWidth, frm);
  916. objRef = divContainer;
  917. } else {
  918. var body = (olIe4 ? frm.document.all.tags('BODY')[0] : frm.document.getElementsByTagName("BODY")[0]);
  919. if (olIe4&&!document.getElementById) {
  920. body.insertAdjacentHTML("beforeEnd",'<div id="'+id+'"></div>');
  921. divContainer=layerReference(id);
  922. } else {
  923. divContainer = frm.document.createElement("DIV");
  924. divContainer.id = id;
  925. body.appendChild(divContainer);
  926. }
  927. objRef = divContainer.style;
  928. }
  929. with (objRef) {
  930. position = 'absolute';
  931. visibility = 'hidden';
  932. zIndex = zValue;
  933. }
  934. }
  935. return divContainer;
  936. }
  937. // get reference to a layer with ID=id
  938. function layerReference(id) {
  939. return (olNs4 ? o3_frame.document.layers[id] : (document.all ? o3_frame.document.all[id] : o3_frame.document.getElementById(id)));
  940. }
  941. ////////
  942. //  PLUGIN ACTIVATION FUNCTIONS
  943. ////////
  944. // Runs plugin functions to set runtime variables.
  945. function setRunTimeVariables(){
  946. if (typeof runTime != 'undefined' && runTime.length) {
  947. for (var k = 0; k < runTime.length; k++) {
  948. runTime[k]();
  949. }
  950. }
  951. }
  952. // Runs plugin functions to parse commands.
  953. function parseCmdLine(pf, i, args) {
  954. if (typeof cmdLine != 'undefined' && cmdLine.length) { 
  955. for (var k = 0; k < cmdLine.length; k++) { 
  956. var j = cmdLine[k](pf, i, args);
  957. if (j >- 1) {
  958. i = j;
  959. break;
  960. }
  961. }
  962. }
  963. return i;
  964. }
  965. // Runs plugin functions to do things after parse.
  966. function postParseChecks(){
  967. if (typeof postParse != 'undefined' && postParse.length) {
  968. for (var k = 0; k < postParse.length; k++) {
  969. if (postParse[k]()) continue;
  970. return false;  // end now since have an error
  971. }
  972. }
  973. return true;
  974. }
  975. ////////
  976. //  PLUGIN REGISTRATION FUNCTIONS
  977. ////////
  978. // Registers commands and creates constants.
  979. function registerCommands(cmdStr) {
  980. if (typeof cmdStr!='string') return;
  981. var pM = cmdStr.split(',');
  982. pms = pms.concat(pM);
  983. for (var i = 0; i< pM.length; i++) {
  984. eval(pM[i].toUpperCase()+'='+pmCount++);
  985. }
  986. }
  987. // Registers no-parameter commands
  988. function registerNoParameterCommands(cmdStr) {
  989. if (!cmdStr && typeof cmdStr!='string') return;
  990. pmt=(!pmt) ? cmdStr : pmt + ',' + cmdStr;
  991. }
  992. // Register a function to hook at a certain point.
  993. function registerHook(fnHookTo, fnRef, hookType, optPm) {
  994. var hookPt, last = typeof optPm;
  995. if (fnHookTo == 'plgIn'||fnHookTo == 'postParse') return;
  996. if (typeof hookPts == 'undefined') hookPts = new Array();
  997. if (typeof hookPts[fnHookTo] == 'undefined') hookPts[fnHookTo] = new FunctionReference();
  998. hookPt = hookPts[fnHookTo];
  999. if (hookType != null) {
  1000. if (hookType == FREPLACE) {
  1001. hookPt.ovload = fnRef;  // replace normal overlib routine
  1002. if (fnHookTo.indexOf('ol_content_') > -1) hookPt.alt[pms[CSSOFF-1-pmStart]]=fnRef; 
  1003. } else if (hookType == FBEFORE || hookType == FAFTER) {
  1004. var hookPt=(hookType == 1 ? hookPt.before : hookPt.after);
  1005. if (typeof fnRef == 'object') {
  1006. hookPt = hookPt.concat(fnRef);
  1007. } else {
  1008. hookPt[hookPt.length++] = fnRef;
  1009. }
  1010. if (optPm) hookPt = reOrder(hookPt, fnRef, optPm);
  1011. } else if (hookType == FALTERNATE) {
  1012. if (last=='number') hookPt.alt[pms[optPm-1-pmStart]] = fnRef;
  1013. } else if (hookType == FCHAIN) {
  1014. hookPt = hookPt.chain; 
  1015. if (typeof fnRef=='object') hookPt=hookPt.concat(fnRef); // add other functions 
  1016. else hookPt[hookPt.length++]=fnRef;
  1017. }
  1018. return;
  1019. }
  1020. }
  1021. // Register a function that will set runtime variables.
  1022. function registerRunTimeFunction(fn) {
  1023. if (isFunction(fn)) {
  1024. if (typeof runTime == 'undefined') runTime = new Array();
  1025. if (typeof fn == 'object') {
  1026. runTime = runTime.concat(fn);
  1027. } else {
  1028. runTime[runTime.length++] = fn;
  1029. }
  1030. }
  1031. }
  1032. // Register a function that will handle command parsing.
  1033. function registerCmdLineFunction(fn){
  1034. if (isFunction(fn)) {
  1035. if (typeof cmdLine == 'undefined') cmdLine = new Array();
  1036. if (typeof fn == 'object') {
  1037. cmdLine = cmdLine.concat(fn);
  1038. } else {
  1039. cmdLine[cmdLine.length++] = fn;
  1040. }
  1041. }
  1042. }
  1043. // Register a function that does things after command parsing. 
  1044. function registerPostParseFunction(fn){
  1045. if (isFunction(fn)) {
  1046. if (typeof postParse == 'undefined') postParse = new Array();
  1047. if (typeof fn == 'object') {
  1048. postParse = postParse.concat(fn);
  1049. } else {
  1050. postParse[postParse.length++] = fn;
  1051. }
  1052. }
  1053. }
  1054. ////////
  1055. //  PLUGIN REGISTRATION FUNCTIONS
  1056. ////////
  1057. // Runs any hooks registered.
  1058. function runHook(fnHookTo, hookType) {
  1059. var l = hookPts[fnHookTo], k, rtnVal, optPm, arS, ar = runHook.arguments;
  1060. if (hookType == FREPLACE) {
  1061. arS = argToString(ar, 2);
  1062. if (typeof l == 'undefined' || !(l = l.ovload)) return eval(fnHookTo+'('+arS+')');
  1063. else return eval('l('+arS+')');
  1064. } else if (hookType == FBEFORE || hookType == FAFTER) {
  1065. if (typeof l == 'undefined') return;
  1066. l=(hookType == 1 ? l.before : l.after);
  1067. if (!l.length) return;
  1068. arS = argToString(ar, 2);
  1069. for (var k = 0; k < l.length; k++) eval('l[k]('+arS+')'); 
  1070. } else if (hookType == FALTERNATE) {
  1071. optPm = ar[2];
  1072. arS = argToString(ar, 3);
  1073. if (typeof l == 'undefined' || (l = l.alt[pms[optPm-1-pmStart]]) == 'undefined') {
  1074. return eval(fnHookTo+'('+arS+')');
  1075. } else {
  1076. return eval('l('+arS+')');
  1077. }
  1078. } else if (hookType == FCHAIN) {
  1079. arS=argToString(ar,2);
  1080. l=l.chain;
  1081. for (k=l.length; k > 0; k--) if((rtnVal=eval('l[k-1]('+arS+')'))!=void(0)) return rtnVal;
  1082. }
  1083. }
  1084. ////////
  1085. //  UTILITY FUNCTIONS
  1086. ////////
  1087. // Checks if something is a function.
  1088. function isFunction(fnRef) {
  1089. var rtn = true;
  1090. if (typeof fnRef == 'object') {
  1091. for (var i = 0; i < fnRef.length; i++) {
  1092. if (typeof fnRef[i]=='function') continue;
  1093. rtn = false;
  1094. break;
  1095. }
  1096. } else if (typeof fnRef != 'function') {
  1097. rtn = false;
  1098. }
  1099. return rtn;
  1100. }
  1101. // Converts an array into an argument string for use in eval.
  1102. function argToString(array, strtInd, argName) {
  1103. var jS = strtInd, aS = '', ar = array;
  1104. argName=(argName ? argName : 'ar');
  1105. if (ar.length > jS) {
  1106. for (var k = jS; k < ar.length; k++) aS += argName+'['+k+'], ';
  1107. aS = aS.substring(0, aS.length-2);
  1108. }
  1109. return aS;
  1110. }
  1111. // Places a hook in the correct position in a hook point.
  1112. function reOrder(hookPt, fnRef, order) {
  1113. if (!order || typeof order == 'undefined' || typeof order == 'number') return;
  1114. var newPt = new Array(), match;
  1115. if (typeof order=='function') {
  1116. if (typeof fnRef=='object') {
  1117. newPt = newPt.concat(fnRef);
  1118. } else {
  1119. newPt[newPt.length++]=fnRef;
  1120. }
  1121. for (var i = 0; i < hookPt.length; i++) {
  1122. match = false;
  1123. if (typeof fnRef == 'function' && hookPt[i] == fnRef) {
  1124. continue;
  1125. } else {
  1126. for(var j = 0; j < fnRef.length; j++) if (hookPt[i] == fnRef[j]) {
  1127. match = true;
  1128. break;
  1129. }
  1130. }
  1131. if (!match) newPt[newPt.length++] = hookPt[i];
  1132. }
  1133. newPt[newPt.length++] = order;
  1134. } else if (typeof order == 'object') {
  1135. if (typeof fnRef == 'object') {
  1136. newPt = newPt.concat(fnRef);
  1137. } else {
  1138. newPt[newPt.length++] = fnRef;
  1139. }
  1140. for (var j = 0; j < hookPt.length; j++) {
  1141. match = false;
  1142. if (typeof fnRef == 'function' && hookPt[j] == fnRef) {
  1143. continue;
  1144. } else {
  1145. for (var i = 0; i < fnRef.length; i++) if (hookPt[j] == fnRef[i]) {
  1146. match = true;
  1147. break;
  1148. }
  1149. }
  1150. if (!match) newPt[newPt.length++]=hookPt[j];
  1151. }
  1152. for (i = 0; i < newPt.length; i++) hookPt[i] = newPt[i];
  1153. newPt.length = 0;
  1154. for (var j = 0; j < hookPt.length; j++) {
  1155. match = false;
  1156. for (var i = 0; i < order.length; i++) {
  1157. if (hookPt[j] == order[i]) {
  1158. match = true;
  1159. break;
  1160. }
  1161. }
  1162. if (!match) newPt[newPt.length++] = hookPt[j];
  1163. }
  1164. newPt = newPt.concat(order);
  1165. }
  1166. for(i = 0; i < newPt.length; i++) hookPt[i] = newPt[i];
  1167. return hookPt;
  1168. }
  1169. ////////
  1170. // OBJECT CONSTRUCTORS
  1171. ////////
  1172. // Object for handling hooks.
  1173. function FunctionReference() {
  1174. this.ovload = null;
  1175. this.before = new Array();
  1176. this.after = new Array();
  1177. this.alt = new Array();
  1178. this.chain = new Array();
  1179. }
  1180. // Object for simple access to the overLIB version used.
  1181. // Examples: simpleversion:351 major:3 minor:5 revision:1
  1182. function Info(version, prerelease) {
  1183. this.version = version;
  1184. this.prerelease = prerelease;
  1185. this.simpleversion = Math.round(this.version*100);
  1186. this.major = parseInt(this.simpleversion / 100);
  1187. this.minor = parseInt(this.simpleversion / 10) - this.major * 10;
  1188. this.revision = parseInt(this.simpleversion) - this.major * 100 - this.minor * 10;
  1189. this.meets = meets;
  1190. }
  1191. // checks for Core Version required
  1192. function meets(reqdVersion) {
  1193. return (!reqdVersion) ? false : this.simpleversion >= Math.round(100*parseFloat(reqdVersion));
  1194. }
  1195. ////////
  1196. // STANDARD REGISTRATIONS
  1197. ////////
  1198. registerHook("ol_content_simple", ol_content_simple, FALTERNATE, CSSOFF);
  1199. registerHook("ol_content_caption", ol_content_caption, FALTERNATE, CSSOFF);
  1200. registerHook("ol_content_background", ol_content_background, FALTERNATE, CSSOFF);
  1201. registerHook("ol_content_simple", ol_content_simple, FALTERNATE, CSSCLASS);
  1202. registerHook("ol_content_caption", ol_content_caption, FALTERNATE, CSSCLASS);
  1203. registerHook("ol_content_background", ol_content_background, FALTERNATE, CSSCLASS);
  1204. registerPostParseFunction(checkPositionFlags);
  1205. registerHook("hideObject", nbspCleanup, FAFTER);
  1206. registerHook("horizontalPlacement", horizontalPlacement, FCHAIN);
  1207. registerHook("verticalPlacement", verticalPlacement, FCHAIN);
  1208. if (olNs4||(olIe5&&isMac)) olLoaded=1;
  1209. registerNoParameterCommands('sticky,autostatus,autostatuscap,fullhtml,hauto,vauto,closeclick,wrap,followmouse,mouseoff,compatmode');