//Скриване на връзките в статус бара
var ns4 = (navigator.appName == "Netscape")? true:false
var ie4 = (document.all)? true:false
function hidestatus(){
	window.status=''
	return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus

function noRightClick() {
	if (event.button==2) {
	alert('Copyright © 2002 KSD®')
	}
}
//document.onmousedown=noRightClick
