	function whereMouse(whichMenu)
	
	{

	if (navigator.appName == "Microsoft Internet Explorer")
	{
	x = event.clientX; y = event.clientY;

	}
	if (navigator.appName == "Netscape")
	{
	document.captureEvents(Event.MOUSEMOVE);
	}
	
	
		//Define what the menu div elements' coordinates are.
		//if x or y fall outside then call top.frames[0].hideAll2()
		//else nothing.
		if (whichMenu == "selTab21")
		{
		if (y < 0 || y >105)
				{
				top.frames[0].hideAll2();
						
				}
		
		if (x < 166 || x > 289)
				{
				top.frames[0].hideAll2()
				
				}		
		}
		if (whichMenu == "selTab20")
		{
			if (y < 0 || y >32)
				{
				top.frames[0].hideAll2()
					
				}
		
		if (x < 60 || x > 159)
				{
				top.frames[0].hideAll2()
				
				}		
		}
		if (whichMenu == "selTab22")
		{
			if (y < 0 || y >32)
				{
				top.frames[0].hideAll2()
				}
		
		if (x < 272 || x > 370)
				{
				top.frames[0].hideAll2()
				}		
		}
		if (whichMenu == "selTab23")
		{
		if (y < 0 || y >15)
				{
				top.frames[0].hideAll2()
				}
		
		if (x < 371 || x > 470)
				{
				top.frames[0].hideAll2()
				}		
		}
		if (whichMenu == "selTab24")
		{
		if (y < 0 || y >71)
				{
				top.frames[0].hideAll2()
				}
		
		if (x < 478 || x > 600)
				{
				top.frames[0].hideAll2()
				}		
		}
		if (whichMenu == "selTab25")
		{
		if (y < 0 || y >15)
				{
				top.frames[0].hideAll2()
				}
		
		if (x < 575 || x > 698)
				{
				top.frames[0].hideAll2()
				}		
		}
		if (whichMenu == "selTab26")
		{
			if (y < 0 || y >15)
				{
				top.frames[0].hideAll2()
				}
		
		if (x < 674 || x > 780)
				{
				top.frames[0].hideAll2()
				}	
		//alert(x);
		//alert(y);	
		}

//document.onmouseover = clickTab;
//document.onclick = clickTab;
	
	}	

function test(e)
{ 
	if (navigator.appName == "Netscape")
	{
	
		var x = e.pageX; 
		var y = e.pageY;
		//alert(mX + " " + mY);
		
		
		if ((mX > 0) && (mY > 71))
		 {
			top.frames[0].hideAll2();
		 }
	}
	document.onmousemove = test;
	document.captureEvents(Event.MOUSEMOVE);
}	
