function vote(){
 $("#poll").fadeOut(1000);
           
      $.post("poll-rpc.php", $("#pollform").serialize(), 
            function(data){
                $("#poll").html(data);
                $("#poll").fadeIn(1000);
           });
           
     
}  
  
function poll_view(){
   
   $("#poll").fadeOut(1000);
      
       $.post("poll-rpc.php", "view=view", 
            function(data){
                $("#poll").html(data);
                $("#poll").fadeIn(1000);
           });
     
}

function poll_vote()
{
    $("#poll").fadeOut(1000);
      
    $.post("poll-rpc.php", "view=vote", 
        function(data){
           $("#poll").html(data);
           $("#poll").fadeIn(1000);
        });
    
}  
