// JavaScript Document
function loadvote(pollbox){
	$(document).ready(function(){
		$.ajax({
				type: "POST",
				url: "polls/vote.php",
				data: "id="+pollbox,
				success: function(datos){
					$("#vote" + pollbox).html(datos);
					$("input").click(function() {
					var opt = this.value;
									$.ajax({
											type: "POST",
											url: "polls/savevote.php",
											data: "id="+pollbox+"&vote="+ opt ,
											success: function(datos){
												$("#vote" + pollbox).html(datos);
												}
										});
						});
			}

		});
	});
}
function viewvotes(pollbox){
		$(document).ready(function(){
		$.ajax({
				type: "POST",
				url: "polls/viewvotes.php",
				data: "id="+pollbox,
				success: function(datos){
						$("#vote" + pollbox).html(datos);
					}
				});
			});
	}
