function show(id,valleft,valright,valw,valh) {

document.getElementById(''+id+'').style.visibility = "visible"
document.getElementById(''+id+'').style.left = valleft;
document.getElementById(''+id+'').style.top = valright;
document.getElementById(''+id+'').style.width =valw;
document.getElementById(''+id+'').style.height =valh;

}


function hide(id) {
document.getElementById(''+id+'').style.visibility = "hidden";
}


function pop(varsl) {
	window.menuframe.location= varsl;

}


function pop2(varsl) {
	window.menuframeT.location= varsl;

}

function lok(varlok) {
location.href=varlok;
}




var IE = document.all?true:false


if (!IE) document.captureEvents(Event.MOUSEMOVE)

document.onmousemove = getMouseXY;

var tempX = 0
var tempY = 0


function getMouseXY(e) {
  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
  }  

  if (tempX < 0){tempX = 0}
  if (tempY < 0){tempY = 0}  

 muisy = tempX
  muisx = tempY
  return true
}
