function vote(id){
    //alert(id);
    $.post('/e-wanted/vote.php',{ID:id},function(txt){
        alert(txt);
        window.location = '/e-wanted/';
    });
}