// mouse over function mOva(src, colorOver, str) { if (!src.contains(event.fromElement)) { src.style.cursor = 'hand'; src.style.background = colorOver; if (str) window.status = str; return true; } } // mouse out function mOut(src, colorIn) { if (!src.contains(event.toElement)) { src.style.cursor = 'default'; src.style.background = colorIn; window.status = 'stone internet'; return true; } } // break out of frames function breakOutFrames() { if (window != top) top.location.href = location.href; } // check where function checkwhere(e) { if (document.layers){ xCoord = e.x; yCoord = e.y; } else if (document.all){ xCoord = event.clientX; yCoord = event.clientY; } else if (document.getElementById){ xCoord = e.clientX; yCoord = e.clientY; } self.status = "X= "+ xCoord + " Y= " + yCoord; } document.onmousemove = checkwhere; if(document.captureEvents) {document.captureEvents(Event.MOUSEMOVE);}