// created by ouzkhan
// ouzkhan script n audios css version 5.0
// ouzkhan.com
<!--
if (window.Event) document.captureEvents(Event.MOUSEDOWN); 

function nocontextmenu(e) {
if (window.Event) {
if (e.which != 1) return false;
} else {
if (event.button != 1) {
event.cancelBubble = true;
event.returnValue = false; 
return false; 
}
}
} 

document.onmousedown = nocontextmenu; 
document.oncontextmenu = nocontextmenu;
// -->
<!--
function hidestatus(){
window.status=' '
return true
}
if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
document.onmouseover=hidestatus
document.onmouseout=hidestatus
// -->
<!--
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
// -->