Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

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