function vote(str)
{
    
     var id = $("input[@name='pols']:checked").attr("value");
     id = id.replace("opt",'');
     
        $.blockUI(); 

        $.post('checkandvote.php', "id=" + id + "&voteid=" + str, function(data) {
      
      
         $.unblockUI(); 
         voteresults(str);
	  
	
    });
 
}
      
  


function voteresults(str)
{
    $.blockUI(); 
     $.post('voteresults.php', "voteid=" + str, function(data) {
      
      $("#generalmessage").html(data).dialog('option', 'title', 'Poll Results').dialog('option', 'height', 'auto').dialog("open");
      $.unblockUI(); 
	  
 });
    
}
