
function loadScroll(width , height){
	var scroller  = null;
	var scrollbar = null;

	scroller  = new jsScroller(document.getElementById("Scroller-1"), width, height);
	scrollbar = new jsScrollbar (document.getElementById("Scrollbar-Container"), scroller, false);
}

function enviaVoto(){
	var idFinalistas = "";
	var blEnvio = true;
	
	for(var i = 1 ; i <= 8 ; i++){
		var input = "finalista" + i;
		
		if(document.getElementById(input).checked){
			idFinalistas += i + ",";
		}
	}
	
	if(idFinalistas != ""){
		idFinalistas = idFinalistas.substring(0 , (idFinalistas.length-1));
	}else{
		alert("Selecione uma candidata.")
		blEnvio = false;
	}
	
	if(document.frmVotacao.code.value == ""){
		alert("Digite os caracteres.")
		blEnvio = false;
	}

	if(blEnvio){
		 $.post(
			'../services/FinalistaVotar.aspx',
			{
			    Captcha: document.frmVotacao.code.value,
			    IdFinalistas: idFinalistas
			},
			function(callback) {
			    if (callback == "C") {
			        $('#votacao').hide();
					$('#msgVotacao').show();
					$('#msgVotacao').html('<strong>Seu voto foi computado com sucesso. Obrigado.</strong><br />Em breve, a equipe Dove divulgar&aacute; o resultado.<br /><br />  <a href="javascript:void(0);" onclick="document.location.reload();"><img src="_img/btn_voltar.gif" width="44" height="13" alt="" /></a>');
			    }
			    else {
					$('#votacao').hide();
					$('#msgVotacao').show();
			        $('#msgVotacao').html('<strong>Problemas no envio do voto.</strong><br />Por favor, tente novamente.<br /><br />  <a href="javascript:void(0);" onclick="$(\'#msgVotacao\').hide();$(\'#votacao\').show();document.frmVotacao.reset();"><img src="_img/btn_voltar.gif" width="44" height="13" alt="" /></a>');
			    }
			}
		);		
	}
}