function mp3player(songUrl,songTitle,playerTitle) {
	var songUrl = (songUrl) ? escape(songUrl) : '';
	var songTitle = (songTitle) ? escape(songTitle) : '';
	var playerTitle = (playerTitle) ? escape(playerTitle) : '';
	
	if (!songUrl == '') {
		document.write(	'<object type="application/x-shockwave-flash" width="400" height="15"' +
		 		'data="http://www.bloodorphans.com/wp-content/themes/bloodorphans/music/xspf_player_slim.swf?' +
				'song_url=' + songUrl + '&song_title=' + songTitle + '&player_title=' + playerTitle + 
				'"><param name="movie" value="http://www.bloodorphans.com/wp-content/themes/bloodorphans/music/xspf_player_slim.swf?' +
				'song_url=' + songUrl + '&song_title=' + songTitle + '&player_title=' + playerTitle + '" /></object>' );
	}
}