function postVote(uid, tripID, entryID, filename, vote, id) {

    obj = "#vote";

    if (id != undefined) {
        obj = obj + "_" + id;
    }

    $(obj).append('<p><img src="/bin/dashboard/throbber.gif"> Thanks for voting ...</p>');

    var data = {
        'uid': uid,
        'trip': tripID,
        'entry': entryID,
        'file': filename,
        'vote': vote,
        'rand': new Date().getTime() + Math.random()
    }

    $.getJSON("/cgi-bin/media_votes.pl", data, function(json) {
        var voteCount = parseInt($(".vote-count").html());
		if (json[0] == "1")
	   	    $(".vote-count").html(voteCount+1);
       	$(obj).hide();
        try { setHeight(); } catch(err) {}
    });
}

