var IE = document.all?true:false
var tempX = 0
var tempY = 0
function ativarMouse(){
	if (!IE) document.captureEvents(Event.MOUSEMOVE)
	document.onmousemove = getMouseXY;

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

  return true
}
var tempX2 = 0
var tempY2 = 0
function posMouse() {
	var myWidth = 0, myHeight = 0;
  if (IE) { 
	 myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
    tempX2 = event.clientX + document.body.scrollLeft
    tempY2 = event.clientY + document.body.scrollTop
  } else {  
	myWidth = window.innerWidth;
    myHeight = window.innerHeight;
    tempX2 = tempX
    tempY2 = tempY
  }  
  return tempX2 + ';'+ tempY2 + ';' + myWidth + ';' + myHeight + ';9'; // o ultimo digito e a distancia do banner para o inicio do site.
}
