$(document).ready(function() {
	$("#send_to_phone").click(function(){
		$("#send_to_phone").hide();
		$("#loading_ajax").show();
		$.ajax({
		  url: "/api/media_download/" + $("#hidden_content_id").val(),
		  cache: false,
		  success: function(return_string){
		  	var re = new RegExp('\ERROR');
			if (!return_string.match(re)) {
		    	window.location = $("#send_to_phone").attr("href");
		    	$("#loading_ajax").hide();
		    }else{
		    	$("#loading_ajax").hide();
		    	$("#send_to_phone").show();
		    	alert(return_string)
		    }
		  }
		});
		return false;
	});
});