function bar() {
	message = "Copyright 2007 by www.ben-addict.com. All rights reserved.";
	window.status = message;
	for(i in document.links)
	document.links[i].onmouseover = function() {
		window.status = message;
		return true;
	}
}
function warnung(strHREF){
	if(confirm('Willst du wirklich diesen Eintrag loeschen?')) {
		document.location = strHREF;
	}
}
window.onload = function() {
	bar();
	disableExternalCapture();
}
