
// OVERLIB CONFIGURATION

// Main background color (the large area)
// Usually a bright color (white, yellow etc)
var ol_fgcolor = "#ffffcc";
	
// Border color and color of caption
// Usually a dark color (black, brown etc)
var ol_bgcolor = "#000000";
	
// Text color
// Usually a dark color
var ol_textcolor = "#000000";
	
// Color of the caption text
// Usually a bright color
//var ol_capcolor = "#FFFFFF";
	
// Color of "Close" when using Sticky
// Usually a semi-bright color
//var ol_closecolor = "#9999FF";

// Font face for the main text
var ol_textfont = "Arial,Helvetica";

// Font face for the caption
var ol_captionfont = "Arial,Helvetica";

// Font face for the close text
var ol_closefont = "Arial,Helvetica";

// Font size for the main text
// When using CSS this will be very small.
var ol_textsize = "2";

// Font size for the caption
// When using CSS this will be very small.
var ol_captionsize = "2";

// Font size for the close text
// When using CSS this will be very small.
var ol_closesize = "2";

// Width of the popups in pixels
// 100-300 pixels is typical
var ol_width = "200";

// How thick the ol_border should be in pixels
// 1-3 pixels is typical
//var ol_border = "1";

// How many pixels to the right/left of the cursor to show the popup
// Values between 3 and 12 are best
//var ol_offsetx = 10;
	
// How many pixels to the below the cursor to show the popup
// Values between 3 and 12 are best
//var ol_offsety = 10;

// Default text for popups
// Should you forget to pass something to overLIB this will be displayed.
//var ol_text = "Default Text"; 

// Default caption
// You should leave this blank or you will have problems making non caps popups.
//var ol_cap = ""; 

// Decides if sticky popups are default.
// 0 for non, 1 for stickies.
//var ol_sticky = 0; 

// Default background image. Better left empty unless you always want one.
//var ol_background = ""; 

// Text for the closing sticky popups.
// Normal is "Close".
//var ol_close = "Close"; 

// Default vertical alignment for popups.
// It's best to leave RIGHT here. Other options are LEFT and CENTER.
//var ol_hpos = RIGHT; 

// Default status bar text when a popup is invoked.
//var ol_status = ""; 

// If the status bar automatically should load either text or caption.
// 0=nothing, 1=text, 2=caption
//var ol_autostatus = 0; 

// Default height for popup. Often best left alone.
//var ol_height = -1; 

// Horizontal grid spacing that popups will snap to.
// 0 makes no grid, anything else will cause a snap to that grid spacing.
//var ol_snapx = 0; 

// Vertical grid spacing that popups will snap to.
// 0 makes no grid, andthing else will cause a snap to that grid spacing.
//var ol_snapy = 0; 

// Sets the popups horizontal position to a fixed column.
// Anything above -1 will cause fixed position.
//var ol_fixx = -1; 

// Sets the popups vertical position to a fixed row.
// Anything above -1 will cause fixed position.
//var ol_fixy = -1; 

// Background image for the popups inside.
//var ol_fgbackground = ""; 

// Background image for the popups frame.
//var ol_bgbackground = ""; 

// How much horizontal left padding text should get by default when BACKGROUND is used.
//var ol_padxl = 1; 

// How much horizontal right padding text should get by default when BACKGROUND is used.
//var ol_padxr = 1; 

// How much vertical top padding text should get by default when BACKGROUND is used.
//var ol_padyt = 1; 

// How much vertical bottom padding text should get by default when BACKGROUND is used.
//var ol_padyb = 1; 

// If the user by default must supply all html for complete popup control.
// Set to 1 to activate, 0 otherwise.
//var ol_fullhtml = 0; 

// Default vertical position of the popup. Default should normally be BELOW.
// ABOVE only works when HEIGHT is defined.
//var ol_vpos = BELOW; 

// Default height of popup to use when placing the popup above the cursor.
//var ol_aboveheight = 0; 

// Default icon to place next to the popups caption.
//var ol_capicon = ""; 

// Default frame. We default to current frame if there is no frame defined.
//var ol_frame = self; 

// Default timeout. By default there is no timeout.
//var ol_timeout = 0; 

// Default javascript funktion. By default there is none.
//var ol_function = Function(); 

// Default timeout. By default there is no timeout.
//var ol_delay = 0; 

// If overLIB should decide the horizontal placement.
//var ol_hauto = 0; 

// If overLIB should decide the vertical placement.
//var ol_vauto = 0; 



// If the user has to click to close stickies.
//var ol_closeclick = 0; 

// This //variable determines if you want to use CSS or inline definitions.
// CSSOFF=no CSS    CSSSTYLE=use CSS inline styles    CSSCLASS=use classes
//var ol_css = CSSOFF; 

// Main background class (eqv of fgcolor)
// This is only used if CSS is set to use classes (ol_css = CSSCLASS)
//var ol_fgclass = ""; 

// Frame background class (eqv of bgcolor)
// This is only used if CSS is set to use classes (ol_css = CSSCLASS)
//var ol_bgclass = ""; 

// Main font class
// This is only used if CSS is set to use classes (ol_css = CSSCLASS)
//var ol_textfontclass = ""; 

// Caption font class
// This is only used if CSS is set to use classes (ol_css = CSSCLASS)
//var ol_captionfontclass = ""; 

// Close font class
// This is only used if CSS is set to use classes (ol_css = CSSCLASS)
//var ol_closefontclass = ""; 

// Unit to be used for the text padding above
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
// Options include "px", "%", "in", "cm" and more
//var ol_padunit = "px";

// Unit to be used for height of popup
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
// Options include "px", "%", "in", "cm" and more
//var ol_heightunit = "px";

// Unit to be used for width of popup
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
// Options include "px", "%", "in", "cm" and more
//var ol_widthunit = "px";

// Font size unit for the main text
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_textsizeunit = "px";

// Decoration of the main text ("none", "underline", "line-through" or "blink")
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_textdecoration = "none";

// Font style of the main text ("normal" or "italic")
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_textstyle = "normal";

// Font weight of the main text ("normal", "bold", "bolder", "lighter", ect.)
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_textweight = "normal";

// Font size unit for the caption
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_captionsizeunit = "px";

// Decoration of the caption ("none", "underline", "line-through" or "blink")
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_captiondecoration = "none";

// Font style of the caption ("normal" or "italic")
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_captionstyle = "normal";

// Font weight of the caption ("normal", "bold", "bolder", "lighter", ect.)
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_captionweight = "bold";

// Font size unit for the close text
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_closesizeunit = "px";

// Decoration of the close text ("none", "underline", "line-through" or "blink")
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_closedecoration = "none";

// Font style of the close text ("normal" or "italic")
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_closestyle = "normal";

// Font weight of the close text ("normal", "bold", "bolder", "lighter", ect.)
// Only used if CSS inline styles are being used (ol_css = CSSSTYLE)
//var ol_closeweight = "normal";

