function audio_player_stat(sound_file, action) {
	if (document.location.href.indexOf('/perezcast') == -1) {
		var conf_counter_url = "http://perezhilton.com/audio_player/stat/counter.php";

		if (action == 'play') {
			document.getElementById('audio_player_counter').innerHTML = '<img height=1 width=1 src="' + conf_counter_url + '?count_play=yes&sound_file=' + sound_file + '&rand=' + Math.floor(100000 + Math.random()*100000) + '" />';
		}
		
		else if (action == 'finished') {
			document.getElementById('audio_player_counter').innerHTML = '<img height=1 width=1 src="' + conf_counter_url + '?count_finished=yes&sound_file=' + sound_file + '&rand=' + Math.floor(100000 + Math.random()*100000) + '" />';
		}
	}
}