function incrementPlayCount(id) {
	// Build hash of values to POST
	var h = $H({
		mediaId: id
	});
	
	new Ajax.Request('/ajax/count_view.asp', {
		parameters: h.toQueryString()
	});
}