//Frontier
//if (window == window.top) top.location.href = "index.htm#"+location.pathname;

var ads_is_onmouseover=0;
function ads_onmouseout() {
    ads_is_onmouseover=0
    return true;
}

function ads_onmouseover() {
    if (IE){
        ads_is_onmouseover=1
        moveLayer('divContainer', MouseX-3, MouseY-3);
        showLayer('divContainer',"visible");
    }
    return true;
}

var MouseX = 0;
var MouseY = 0;
var tempX = 0;
var tempY = 0;

var IE = document.all?true:false
if (!IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = getMouseXY;

function getMouseXY(e) {
  //window.status="";
  if (IE) { // grab the x-y pos.s if browser is IE
    tempX = event.clientX + document.body.scrollLeft
    tempY = event.clientY + document.body.scrollTop
  } else {  // grab the x-y pos.s if browser is NS
    tempX = e.pageX
    tempY = e.pageY
  }  
  // catch possible negative values in NS4
  if (tempX < 0){tempX = 0}
  if (tempY < 0){tempY = 0}  
  // show the position values in the form named Show
  // in the text fields named MouseX and MouseY
  MouseX = tempX;
  MouseY = tempY;
  if(ads_is_onmouseover==1){
    //showLayer('divContainer',"hidden")
    moveLayer('divContainer', MouseX-3, MouseY-3);
    //showLayer('divContainer',"visible");
  }else{
    showLayer('divContainer',"hidden")
  }
  return true
}


