window.onerror = meinFehler;

function meinFehler(Nachricht,Datei,Zeile)
{
 return true;
}


function playSound() { 
	document.firstSound.play(); 
}
function pauseSound() { 
	document.firstSound.pause(); 
}
function stopSound() { 
	document.firstSound.stop(); 
}



