// JavaScript Document

// 1 //
function disableRightClick(e)
{ 
var message = "Right click disabled";

if(!document.rightClickDisabled) // initialize 
{
if(document.layers)
{
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = disableRightClick;
}
else document.oncontextmenu = disableRightClick;
return document.rightClickDisabled = true; 
}
if(document.layers || (document.getElementById && !document.all))
{ 
if (e.which==2||e.which==3)
{
return false;
} 
} 
else
{ 
return false; 
}
}
disableRightClick(); 
// 1 //

// 2 //
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
// 2 //

// 3 //
function sound(obj)
{var sound= eval("document."+obj)
sound.play()}

function seite(URL) {										//<a href="javascript:sound('sound-name'); seite('dfframe.htm')" 
setTimeout("self.location.href = '"+ URL +"'", 2000);}		//onmouseover="sound('sound-name')">Sound bei Berührung</a>
// 3 //