// VARIABLES FOR BROWSER TYPE STORAGE
var isIE  = document.all?true:false;
var isNS4 = document.layers?true:false;
var isNS6 = (document.getElementById && !document.all)?true:false;
var mX; var mY;
function mInit() {
  document.onmousemove = getXY;
  }
function getXY(e) {
  mX = (window.Event) ? e.pageX : (document.body.scrollLeft + event.clientX);
  mY = (window.Event) ? e.pageY : (document.body.scrollTop + event.clientY);
  }
function lastUpdate() {
	var date  = new Date(document.lastModified);
	var day   = date.getDate();
	var month = date.getMonth() + 1;
	var year  = date.getYear();
	if (year < 100) { year = year + 2000; }
	else if (year < 200) { year = year + 1900; }
	document.write("Last&nbsp;Update:&nbsp;" + month + "/" + day + "/" + year);
	}
function hideObj(myObj) {
  if (isIE)  {
    eval("document.all." + myObj + ".style.visibility = 'hidden'");
    eval("document.all." + myObj + ".style.zIndex = '0'");
    }
  if (isNS4) { document.myObj.visibility = 'hide'; }
  if (isNS6) {
    var lObj = document.getElementById(myObj);
    if (lObj) { lObj.style.visibility = 'hidden' }
    }
  }
function showObj(myObj) {
  if (isIE)  {
    eval("document.all." + myObj + ".style.visibility = 'visible'");
    eval("document.all." + myObj + ".style.zIndex = '101'");
    }
  if (isNS4) { document.myObj.visibility = 'visible'; }
  if (isNS6) {
    var lObj = document.getElementById(myObj);
    if (lObj) { lObj.style.visibility = 'visible' }
    }
  }
