var Main = {
	
	opcionElegida : 0,
	fotoActual: 0,
	fotos: new Array(),
	epigrafes: new Array(),
	widths: new Array(),
	heights: new Array(),
	
	verEncuesta: function() {
		window.open('index.php?section=main&action=verEncuesta', 'encuesta','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=375,height=650');
		//window.open('index.php?section=main&action=verEncuesta', 'encuesta','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=375,height=500');
	},
	
	actualizarValor: function(valor) {
		Main.opcionElegida = valor.value;
		$('opt').value = valor.value;
	},
	
	loadFotoOpinion: function() {
		$('foto').src="";
		$('foto').width=this.widths[this.fotoActual];
		$('foto').height=this.heights[this.fotoActual];
		$('foto').src="imgs/fotosopinion/"+this.fotos[this.fotoActual];
		$('epigrafe').innerHTML=this.epigrafes[this.fotoActual];
		$('nroFoto').innerHTML = this.fotoActual+1;
	},

	loadFotoAmerica: function() {
		$('foto').src="";
		$('foto').width=this.widths[this.fotoActual];
		$('foto').height=this.heights[this.fotoActual];
		$('foto').src="/imgs/fotosAmerica/"+this.fotos[this.fotoActual];
		$('epigrafe').innerHTML=this.epigrafes[this.fotoActual];
		$('nroFoto').innerHTML = this.fotoActual+1;
	},

	loadFoto: function() {
		/*
		div = $('divFoto');
		img = document.createElement("img");
		img.src="imgs/fotos/"+this.fotos[this.fotoActual];
		span = document.createElement("span");
		span.class="epigrafe";
		span.innerHTML=this.epigrafes[this.fotoActual];
		*/
		$('foto').src="";
		$('foto').width=this.widths[this.fotoActual];
		$('foto').height=this.heights[this.fotoActual];
		$('foto').src="imgs/fotos/"+this.fotos[this.fotoActual];
		$('epigrafe').innerHTML=this.epigrafes[this.fotoActual];
		$('nroFoto').innerHTML = this.fotoActual+1;
	},
	
	ffwFoto: function() {
		this.fotoActual++;
		if (this.fotoActual>=this.fotos.length)
			this.fotoActual=0;
		this.loadFoto();
	},
	
	rwdFoto: function() {
		this.fotoActual--;
		if (this.fotoActual<0)
			this.fotoActual=this.fotos.length-1;
		this.loadFoto();
	},
	
	ffwFotoAmerica: function() {
		this.fotoActual++;
		if (this.fotoActual>=this.fotos.length)
			this.fotoActual=0;
		this.loadFotoAmerica();
	},
	
	rwdFotoAmerica: function() {
		this.fotoActual--;
		if (this.fotoActual<0)
			this.fotoActual=this.fotos.length-1;
		this.loadFotoAmerica();
	},
	
	
	
	/*
	votar: function() {
		if (Main.opcionElegida==0) {
			alert('No ha elegido ninguna opcion');
		} else {
			params = 'section=main&action=votar&opt='+Main.opcionElegida;
			new Ajax.Request('index.php', { 
										method: 'get', 
										parameters: params, 
										onComplete: Main.ftnVotacion
								});
		}
	},
	
	ftnVotacion: function(data) {
		rta = data.responseText;
		if (rta=="error") {
			alert('Usted ya ha votado en esta encuesta');
		} else {
			alert('hola');
			Main.verEncuesta();
			//location.href='index.php?';
		}
	},
	*/
	cargarEnVivo: function() {
		window.open('index.php?section=main&action=enVivo', 'enVivo','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600');
	}
	
};
