//********************************************************************
// init.js
//
// Basic JavaScript initializations.
//
//   Author:    Colin J. Wynne <cwynne@avtokrator.org>
//   Created:   2006-08-16
//   Version:   (see RCS string below)
//
//********************************************************************
// $Id: init.js,v 1.2 2008/03/25 17:32:24 cwynne Exp $
//********************************************************************

    // Are we running a bug-ridden, crash-prone piece of junk?
var MacIE5 = (
    navigator.userAgent.indexOf('MSIE 5') != -1
        &&
    navigator.userAgent.indexOf('Mac')    != -1
);

    // Browser detects, for when they absolutely can not be avoided.
var MSIE = (
    navigator.userAgent.indexOf('MSIE') != -1
);

    // Do we support W3C DOM?
var W3CDOM = (
    !MacIE5
        && 
    document.getElementsByTagName
        &&
    document.createElement
);

//********************************************************************
// END
//********************************************************************
