function plaatsRelatieMp3Speler(object_path, count) {
	var height = count * 20 + 80;
	if (height < 100) height = 100;
	if (height > 400) height = 390;
	var mp3url = '/assets/xhtml/mediaplayer.swf?shuffle=false&displayheight=0&backcolor=0xF7F7F7&file='+
                     'http://www.daltonvoorburg.nl'+object_path+'::relatiemp3?'+(new Date()).valueOf();
	document.write(
	'		<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="183" height="'+height+'" id="mp3player"'+
	'		codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" >'+
	'		    <param name="movie" value="'+mp3url+'" />'+
	'		    <param name="wmode" value="transparent" />'+
	'		    <embed src="'+mp3url+'" wmode="transparent" width="183" height="'+height+'" name="mp3player" '+
	'		    	type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'+
	'		</object>'
	);
}

