

function votetoupiao(name,id){

       try{
			xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
		}catch(e){
			try{
				xmlhttp=new ActiveXObject('Msxml2.XMLHTTP');
			}catch(e){
				try{
					xmlhttp=new XMLHttpRequest();
				}catch(e){
					alert(e);
				}
			}
		}
	      xmlhttp.open("post","/voteAction.do?method=ajaxcount&id="+id);
		  xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
		  xmlhttp.onreadystatechange=function(){
          if(xmlhttp.readyState==4)
          { 
          
             if(xmlhttp.status == 200)
             {               
           xmlObject=xmlhttp.responseText;    
           	           if(xmlObject=="false")
	           {
	            	alert('您的机会已经用完了，明天再来吧！');
		       }
		       else
		         {
		        
		         	alert('投票成功,感谢您的参与！');
		        	document.getElementById(name).innerHTML =xmlObject;
		 
		         }
         	
         	
             }
             else
             {
                alert("请先登陆！");
                location.href='/userAction.do?method=land';
             }
          }
        
        }
		xmlhttp.send(null);
}		