X-Cache-Lookup: MISS from ia410304.us.archive.org:3128
X-Cache: MISS from ia410305.us.archive.org
X-Cache-Lookup: MISS from ia410305.us.archive.org:80
Via: 1.0 ia410304.us.archive.org:3128 (squid/2.6.STABLE14), 1.0 ia410305.us.archive.org:80 (squid/2.6.STABLE14)
Connection: close
scrW="0";scrC="0";jScrp="0";
htRf=escape(document.referrer);
if (htRf=="" || htRf=="Bookmark") htRf="Bookmark+or+URL+Typed+Direct"
var dhRDM = Math.floor(Math.random()*1000);
scrW=screen.width;
if (navigator.appName != "Netscape")
{scrC=screen.colorDepth;}
else {scrC=screen.pixelDepth;}
jScrp=navigator.javaEnabled();
jData="&scrW="+scrW+"&scrC="+scrC;
jData=jData +"&htRefer="+htRf+"&jScrp="+jScrp+"";
if (!(navigator.appName == "Netscape"
&& navigator.appVersion.charAt(0) == "2")){
document.write("
\n");
}
/**
* wz_menu 20MAR2002 Version 6.0
* Andy Finnell, March 2002
* Copyright (c) 2000-2002 Macromedia, Inc.
*
* based on menu.js
* by gary smith, July 1997
* Copyright (c) 1997-1999 Netscape Communications Corp.
*
* Netscape grants you a royalty free license to use or modify this
* software provided that this copyright notice appears on all copies.
* This software is provided "AS IS," without a warranty of any kind.
*/
function wzMenus(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh, halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah)
{
this.version = "020320 [wzMenus; wz_menu.js]";
this.type = "wzMenus";
this.menuWidth = mw;
this.menuItemHeight = mh;
this.fontSize = fs;
this.fontWeight = "plain";
this.fontFamily = fnt;
this.fontColor = fclr;
this.fontColorHilite = fhclr;
this.bgColor = "#555555";
this.menuBorder = 0;
this.menuBgOpaque=opq;
this.menuItemBorder = 0;
this.menuItemIndent = idt;
this.menuItemBgColor = bg;
this.menuItemVAlign = valgn;
this.menuItemHAlign = halgn;
this.menuItemPadding = pad;
this.menuItemSpacing = space;
this.menuLiteBgColor = "#ffffff";
this.menuBorderBgColor = bg;
this.menuHiliteBgColor = bgh;
this.menuContainerBgColor = "#cccccc";
this.childMenuIcon = "arrows.gif";
this.submenuXOffset = sx;
this.submenuYOffset = sy;
this.submenuRelativeToItem = srel;
this.vertical = vert;
this.items = new Array();
this.actions = new Array();
this.childMenus = new Array();
this.hideOnMouseOut = true;
this.hideTimeout = to;
this.wzAddMenuItem = wzAddMenuItem;
this.wzWriteMenus = wzWriteMenus;
this.wz_showMenu = wz_showMenu;
this.wzMenuItemOver = wzMenuItemOver;
this.wzMenuItemAction = wzMenuItemAction;
this.wzhideWzMenu = wzhideWzMenu;
this.wzhideWzChildMenu = wzhideWzChildMenu;
if (!window.menus) window.menus = new Array();
this.label = " " + label;
window.menus[this.label] = this;
window.menus[window.menus.length] = this;
if (!window.activeMenus) window.activeMenus = new Array();
}
function wzAddMenuItem(label, action) {
this.items[this.items.length] = label;
// this.actions[this.actions.length] = action;
}
function wzFIND(item) {
if( window.mmIsOpera ) return(document.getElementById(item));
if (document.all) return(document.all[item]);
if (document.getElementById) return(document.getElementById(item));
return(false);
}
function wzWriteMenus(container) {
if (window.triedToWriteMenus) return;
var agt = navigator.userAgent.toLowerCase();
window.mmIsOpera = agt.indexOf("opera") != -1;
if (!container && document.layers) {
window.delayWriteMenus = this.wzWriteMenus;
var timer = setTimeout('delayWriteMenus()', 500);
container = new Layer(100);
clearTimeout(timer);
} else if (document.all || document.hasChildNodes || window.mmIsOpera) {
document.writeln('');
container = wzFIND("menuContainer");
}
window.mmHideMenuTimer = null;
if (!container) return;
window.triedToWriteMenus = true;
container.isContainer = true;
container.menus = new Array();
for (var i=0; i