/**************************************************************************

	POLL FUNCTIONS

***************************************************************************/


function poll_vote(){

	myOption = -1;
	
	for ( i = document.the_poll.vote.length-1; i > -1; i-- ) {
	
		if ( document.the_poll.vote[i].checked ) {
		
			myOption = i;
			
		}
	
	}
	
	if( myOption == -1 ){
		
		AJAX_Request( '/poll/content.php?vote=show-results' , 'poll-container' );
	
	} else {
		
		AJAX_Request( '/poll/content.php?vote=' + document.the_poll.vote[myOption].value , 'poll-container' );
	
	}

	return false;

}


/***************************************************************************/
