// JavaScript Document

var CMisDHTML = 0;
var CMisLayers = 0;
var CMisALL = 0;
var CMisID = 0;

if (document.getElementById) { CMisID = 1; CMisDHTML = 1; }
else {
	if (document.all) { CMisALL = 1; CMisDHTML = 1; }
	else {
		browserVersion = parseInt(navigator.appVersion);
	if ((navigator.appName.indexOf('Netscape') != -1) && (browserVersion == 4)) { CMisLayers = 1; CMisDHTML = 1;}
	}
}

function findDOM(objectID,withStyle) {
	if (withStyle == 1) {
		if (CMisID) { return (document.getElementById(objectID).style); }
		else {
			if (CMisALL) { return (document.all[objectID].style); }
		else {
			if (CMisLayers) { return (document.layers[objectID]); }
		};}
	}
	else {
		if (CMisID) { return (document.getElementById(objectID)); }
		else {
			if (CMisALL) { return (document.all[objectID]); }
		else {
			if (CMisLayers) { return (document.layers[objectID]); }
		};}
	}
} // end of function

function autoFocus() {
	var dom = findDOM('autoFocus','0')
	dom.focus();
} // end of function

function vis(objectID,state) {
	var domStyle = findDOM(objectID,1);
	domStyle.display = state;
} // end of function
