<!--
var estado = false;

function amigo(){
	if(!estado) {
		document.getElementById('amigo').style.display = 'block';
		estado = true;
	} else {
		document.getElementById('amigo').style.display = 'none';
		estado = false;
	}
}

function compartir(){
	if(!estado) {
		document.getElementById('compartir').style.display = 'block';
		estado = true;
	} else {
		document.getElementById('compartir').style.display = 'none';
		estado = false;
	}
}

function voteoff(){

	$("bgall").fade();
	if(document.getElementById("envioOK").style.display == 'none'){
		$("votebox").fade();
	}else{
		$("envioOK").fade();
	}
	
}

function envioamigo(){

	$("bgall").style.height = $("fin").cumulativeOffset().top+"px";
	$("bgall").style.width = document.viewport.getWidth()+"px";
	$("envioOK").style.top = document.viewport.getScrollOffsets().top+100+"px";
	$("bgall").appear({ duration: 0.5, to: 0.5 });
	$("envioOK").appear({ duration: 0.5 });
	
}

function vote(){

	$("bgall").style.height = $("fin").cumulativeOffset().top+"px";
	$("bgall").style.width = document.viewport.getWidth()+"px";
	$("votebox").style.top = document.viewport.getScrollOffsets().top+100+"px";
	$("bgall").appear({ duration: 0.5, to: 0.5 });
	$("votebox").appear({ duration: 0.5 });
	
}

function enviar(url){
			
	var formulario = document.getElementById('formmail');
			
	if (!formulario.checkbox.checked){
		
		var MSG="Para poder realizar el envio es necesario que acepte el aviso legal, gracias.";
		alert(MSG);
				
	} else {
		
		boton  = document.getElementById("botonvotaremail");
		
		boton.disabled='disabled';
		boton.value='Enviando';

		new Ajax.Updater('votecampo',url, {asynchronous:true, evalScripts:true, parameters:Form.serialize('formmail'), requestHeaders:['X-Update', 'votecampo']});
		
	}
		
	return false;
		
}
-->