<!--
var popTimer = 0;
var popTimer2 = 0;
var lastlayer='';
var lastlayer2='';
var isDOM = (document.getElementById ? true : false);
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);

function getRef(id) {
 if (isDOM) return document.getElementById(id);
 if (isIE4) return document.all[id];
 if (isNS4) return document.layers[id];
}
function invizeIt()  {
 if (isDOM) document.getElementById(lastlayer).style.visibility="hidden";
 if (isIE4) document.all[lastlayer].style.visibility="hidden";
 if (isNS4) document.layers[lastlayer].visibility="hide";
}
function invizeIt2()  {
 if (isDOM) document.getElementById(lastlayer2).style.visibility="hidden";
 if (isIE4) document.all[lastlayer2].style.visibility="hidden";
 if (isNS4) document.layers[lastlayer2].visibility="hide";
}
function hideIt() {
 popTimer = setTimeout('invizeIt()', 300);
}
function hideIt2() {
 popTimer2 = setTimeout('invizeIt2()', 300);
}
function showIt(layer,objct) {
 if (lastlayer!='') invizeIt();
 if (lastlayer2!='') invizeIt2();
 clearTimeout(popTimer);
 var left=0; 
 var obj=objct;
 while(obj) { 
  left+=parseInt(obj.offsetLeft);
  obj=obj.offsetParent;
 }
 if (navigator.appName == "Microsoft Internet Explorer") left+=1;
 left+=1;
 getRef(layer).style.left=left;
 if (isDOM) document.getElementById(layer).style.visibility="visible";
 if (isIE4) document.all[layer].style.visibility="visible";
 if (isNS4) document.layers[layer].visibility="show";
 lastlayer=layer;
}

function showIt2(layer,objct,objct2,size) {
 if (lastlayer2!='') invizeIt2();
 clearTimeout(popTimer2);
 var top=0;
 var obj=objct;
 while(obj) { 
  top+=parseInt(obj.offsetTop);
  obj=obj.offsetParent;
 }
 var left=0;
 var obj=objct2;
 while(obj) { 
  left+=parseInt(obj.offsetLeft);
  obj=obj.offsetParent;
 }

 if (navigator.appName == "Microsoft Internet Explorer") {
  left+=1;
  top-=5;
 }// else 
 left+=size;
 left+=2;
 getRef(layer).style.left=left;
 getRef(layer).style.top=top;
 if (isDOM) document.getElementById(layer).style.visibility="visible";
 if (isIE4) document.all[layer].style.visibility="visible";
 if (isNS4) document.layers[layer].visibility="show";
 lastlayer2=layer;
}

function getXmlHttp(){
	var xmlhttp
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	} catch (e) {
		try {
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch (e1) {
      			xmlhttp = false;
		}
	}
	
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}

	return xmlhttp;
}

-->
