//
// $Id: include.js,v 1.1 2000-02-09 14:21:21-05 jbrains Exp jbrains $
//

//==========================================================
// Defines ISP-configurable values used for the entire site.
//==========================================================

//
// Banner Ad Placement
//

// Values for kBannerPlacement are:
//
// "NONE" -- do not show a banner ad.
// "BOTTOM" -- show a banner ad at the bottom of the main
//             content window.
// Anything else will be ignored. "NONE" is the default.
var kBannerPlacement = "NONE";

// This variable determines the height of the banner ad,
// in pixels, when placed at the bottom. (kBannerPlacement == "BOTTOM")
var kBannerHeightBottom = 62;

//===========================
// DO NOT EDIT
//===========================
var kBannerBottomFrameHeight = (kBannerPlacement == "BOTTOM" ? kBannerHeightBottom : 0);

