function toggleText(tNum) {
  var sG = "ct" + tNum;
  var sGp = "opener" + tNum;
  //alert(tNum);
  if ((document.all[sG].style.display == "none") || document.all[sG].style.display == ""){
	document.all[sG].style.display = "block";
  	//alert(mouseLocation.x+","+mouseLocation.y);
	//document.images[sGp].src = "images/combOpen.gif";
	}
	else{
		document.all[sG].style.display = "none";
		//document.images[sGp].src = "images/combClosed.gif";
	}
	}
	
	
	
	function toggleText2(tNum) {
  var sG = "ct" + tNum;
  var sGp = "opener" + tNum;
  //alert(tNum);
  if ((document.all[sG].style.display == "none") || document.all[sG].style.display == ""){
	document.all[sG].style.display = "block";
		if (document.layers){
			 //NS
			//alert("ns");
			//test();
		}
		else if (document.all){
			getMouseLoc(); //IE
			document.all[sG].style.top = mouseLocation.y-175;     
			document.all[sG].style.left = mouseLocation.x-600;
			//alert("ie");
			//test();
		}
  	//alert(mouseLocation.x+","+mouseLocation.y);
	//document.images[sGp].src = "images/combOpen.gif";
	}
	else{
		document.all[sG].style.display = "none";
		//document.images[sGp].src = "images/combClosed.gif";
	}
	}
	
	
	


function test()
{
  if (document.layers) getMouseLoc;     //NS
  else if (document.all) getMouseLoc(); //IE
  //alert(mouseLocation.x+","+mouseLocation.y);
}


function Point(x,y) {  this.x = x; this.y = y; }
mouseLocation = new Point(-500,-500);
function getMouseLoc(e)
{
  if(!document.all)  //NS
  {
    mouseLocation.x = e.pageX;
    mouseLocation.y = e.pageY;
  }
  else               //IE
  {
    mouseLocation.x = event.x + document.body.scrollLeft;
    mouseLocation.y = event.y + document.body.scrollTop;
  }
  return true;
}
//NS init:
if(document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onMouseDown = getMouseLoc; }
