spliurl = document.URL.split('/');
var APP_DIR = spliurl[0]+"/"+spliurl[1]+"/"+spliurl[2]+"/";
var APP_URL = APP_DIR;
var IE6 = Prototype.Browser.IE && parseInt(navigator.userAgent.substring(navigator.userAgent.indexOf("MSIE")+5))==6;


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 openNewWindow(URLtoOpen, windowName, windowFeatures)
{
	newWindow = window.open(URLtoOpen, windowName, windowFeatures);
}*/

function openNewWindow(URLtoOpen, windowName, windowFeatures)
{
	GB_showCenter(windowName, URLtoOpen, 600, 720);
}

function openNewDirecto(URLtoOpen, windowName)
{
	GB_showCenter(windowName, URLtoOpen, 544, 970);
	$('GB_overlay').addClassName('quitaBordes');
	$('GB_window').addClassName('quitaBordes');
}

function openHelp(URLtoOpen)
{
	GB_showCenter('Ayuda', URLtoOpen, 350, 700);
	$('GB_overlay').addClassName('quitaBordes');
	$('GB_overlay').addClassName('esplicaciones');
	$('GB_window').addClassName('quitaBordes');
	$('GB_window').addClassName('esplicaciones');
}