var IE = document.all?true:false;
if (!IE)
	document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = getMouseXY;
var X=0;
var Y=0;

function getMouseXY(e){
	if (IE){
		X=event.clientX+document.body.scrollLeft;
		Y=event.clientY+document.body.scrollTop;
	}
	else {
		X = e.pageX;
		Y = e.pageY;
	}
	if (X < 0)
		X = 0;
	if (Y < 0)
		Y = 0;
}

function popup(url, titl, w, h){
	newWin=window.open(url, titl, 'scrollbars=yes,menubar=yes,resizable=yes,location=no,screenX='+X+',screenY='+Y+',width='+w+',height='+h);
	newWin.focus();
}

