// JavaScript Document
<!--

//variable to determine if the page has been completely loaded for javascripts.  It is set to true in the body onload tag.
var isPageLoaded = false;

// Browser sniffing variables
var ns4 = document.layers ? 1 : 0;
var ie4 = document.all ? 1 : 0;
var ns6 = document.getElementById && !document.all ? 1 : 0;

//-->

