/*
 * Variables de configuracion
 */

/*
 * URL del sitio
 */
spliurl = document.URL.split('/');

var APP_DIR = spliurl[0]+"/"+spliurl[1]+"/"+spliurl[2]+"/";


function vote() {

	var poll = document.forms.form_encuesta.poll.value;
	var num = document.forms.form_encuesta.choice.length
	var choice = false;
	
	for (i=0;i<num;i++) {

        if ( document.forms.form_encuesta.choice[i].checked ) {
			choice = document.forms.form_encuesta.choice[i].value;
		}
	}
	
	if ( choice ) {
	
		var url = APP_DIR+'detalle_encuesta/'+poll+'/'+choice;
		document.location.href=url;
	
	} else {
		alert('Tiene que seleccionar una de las opciones.');
	}

	return;
}

function page(num) {

	if ( num >= 1 ) {
	
		var rand = Math.random(10);
	
		var url = APP_DIR + 'videoteca/pagination/' + num + '/' + rand;
		
		new Ajax.Request( url, {
			method: 'get',
			encoding: 'utf-8',
			onSuccess: function(transport) {
			
				if(transport.responseText) {
					
					$('video-list').innerHTML = transport.responseText;

				} else {

					alert('Error2');
				}
			}
		});
	
	} else {
		alert('Página inválida.');
	}

}