document.onmousemove = function(){
	var myAnchor = window.event.srcElement;
	var strInnerHTML;
	if (myAnchor.tagName){
		if (myAnchor.tagName.toLowerCase() == "a"){
			myAnchor.onfocus = function() {
				strInnerHTML = this.innerHTML;
				window.status = stripIMG(strInnerHTML); 
				return (true);
			}
			myAnchor.onmouseover = function() {
				strInnerHTML = this.innerHTML;
				window.status = stripIMG(strInnerHTML); 
				return (true);
			}
			myAnchor.onmouseout = function() {window.status = ""; return (true);}
		}
	}
}
function stripIMG(Text){
	var strPattern = new RegExp("<IMG", "g");
	var strText = Text.toUpperCase();
	var strResult = Text;
	var intPos  = -1;
	if (strText.search(strPattern)>=0){
		strPattern = new RegExp(">", "g");
		intPos    = strText.search(strPattern);
		strResult = Text.substr(intPos+1, Text.length);
	}
	return (strResult);
}

function disableselect(e){ return false }
function reEnable(){ return true }

document.onselectstart=new Function ("return false")
document.oncontextmenu=new Function("return false")

if (window.sidebar){
	document.onmousedown=disableselect
	document.onclick=reEnable
}

