// JavaScript Document
function changeSrc(id, newSrc) {
   document.getElementById(id).src=newSrc;
}
function changeStyle(id, newStyle){
    document.getElementById(id).style.display=newStyle;
}
function playAudio(id){
	 document.getElementById("audio").innerHTML = '<embed src="http://www.fopbox.nl/audio/'+id+'" autostart="true" loop="false" controls="SmallConsole" width="200" height="15"></embed>';
}