document.onmousedown = checkClick
if (document.layers){
	document.captureEvents(Event.MOUSEDOWN)
}
function checkClick(ev) {
	if (navigator.appName == "Netscape"){
	if (ev.which != 1) {
			
			return false
		} 
	}
	else{
	if (event.button != 1){
			
			return false
		}
	}
}

//Disable select-text script (IE4+, NS6+)-

function disableselect(e){
	return false
}

function reEnable(){
	return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
	document.onmousedown=disableselect
	document.onclick=reEnable
}

//hide the statusbar
function hidestatus(){
	window.status='SANA, Bulgaria - manufacture of leather handbags, slippers and accessories...'
	return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
