function submitEmail() {
	var email_address = $("#email").get(0).value;
	$.post("/add_email/", { email: email_address });
	$("#email_submit").hide();
	$("#email_submitted").show();
}

function submitLocationRequest() {
	var location_r = $("#location_request").get(0).value;
	$.post("/add_location_request/", { location: location_r });
	$("#location_request_submit").hide();
	$("#location_request_submitted").show();
}

function submitComment(planet_id) {
	var user_name_ = $("#username").get(0).value;
	var comment_ = $("#comment").get(0).value;
	$.post("/planet/submit_comment/", { user_name: user_name_, comment: comment_, id: planet_id });
	$("#comment_submit").hide();
	$("#comment_submitted").show();
}

function submitVote(id) { 
	$.post("/map/vote/", { _id: id });
	$("#vote").hide();
	$("#vote_submitted").show();
}

