﻿// JScript File
//if (!isIE) document.captureEvents(Event.MOUSEMOVE)
//    document.onmousedown = getMouseXY;  //---------------->change

//var tempX = 0;
//var tempY = 0;

//function getMouseXY(e)
//{
//	if (IE) 
//	{ // grab the x-y pos.s if browser is IE
//		tempX = event.clientX + Utility_scrollLeft();
//		tempY = event.clientY + Utility_scrollTop();
//	}
//	else 
//	{  // grab the x-y pos.s if browser is NS
//		tempX = e.pageX;
//		tempY = e.pageY;
//	}  
//	if (tempX < 0){tempX = 0;}
//	if (tempY < 0){tempY = 0;} 
//	
///*    if(MenuActive == true)
//    {
//        s = MenuSizeAndLocation(document.getElementById(cMenu));

//        if(tempX <= s['L'] || tempX >=s['R'] || tempY <= s['T'] || tempY >= s['B'])
//        {
//            MenuActive = false;
//            MenuShutDown(); 
//        }
//    }
//*/
//	return true;
//};



