  var layerRef="null", styleSwitch="null";
 var isNS = (navigator.appName == "Netscape");
layerRef = (isNS) ? "document" : "document.all";
styleSwitch = (isNS) ? "" : ".style";
movingl=0;

 function layer_off(){
commanda=layerRef+'["layerSorry"]'+styleSwitch+'.visibility="hidden"'
eval(commanda);
return;
  }

  function layer_on(){
commanda=layerRef+'["layerSorry"]'+styleSwitch+'.visibility="visible"'
eval(commanda);
return;
  }

function processMouse(e) {
if (isNS) {
eval("document.layerSorry.left = e.pageX - 15;");
eval("document.layerSorry.top = e.pageY + 15;");
} else {
if ((event.clientX + document.body.scrollLeft) < (document.body.clientWidth - 105)) {
   eval("document.all.layerSorry.style.pixelLeft = event.clientX + document.body.scrollLeft - 15 ;");
}
if ((event.clientY + document.body.scrollTop) < 500) {
   eval("document.all.layerSorry.style.pixelTop = event.clientY + document.body.scrollTop + 15;");}
}
}

function init() {
if (isNS) { document.captureEvents(Event.MOUSEMOVE); }
document.onmousemove = processMouse;
}

document.write('<div id="layerSorry">\n<img src="/images/sorry.gif" alt="" width="120" height="60" border="0">\n</div>');

init();	