<!--
var NS4 = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >=4);

var thisURL = document.location
if (NS4) {
      origWidth = innerWidth;
      origHeight = innerHeight;
   }

function reDo() {
   if (innerWidth != origWidth || innerHeight != origHeight) 
      location.replace(thisURL);
}
if (NS4) onresize = reDo;

if (parseInt(navigator.appVersion) >= 4) {
var sw = screen.width;
}

function el_poz(mousemove) {
if (parseInt(navigator.appVersion) >= 4){ //check if browser supports screen width
var sw = screen.width 
}

if (parseInt(navigator.appVersion) >= 4) {
if (sw > 640 && document.layers) {
document.layer1.left = 0
}
else if (parseInt(navigator.appVersion) >= 4){
if (sw > 640){
document.all.layer1.style.left = 0
}
}
}

if (document.layers){
var y = window.pageYOffset
}
else {
var y = document.body.scrollTop
}
if (document.layers){
document.layer1.top = y + 2
}
else {
document.all.layer1.style.top = y + 2
}

}
// end of function layer position


function initiate_m_move(){  //new function
if (window.captureEvents){
window.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = el_poz
window.onmousemove = el_poz
} //end function
//-->
