/* Documento creado por Estudio Adumbro */
var comprobar_redimension=false;
window.onload=function() {
	if(!Get_Cookie('abadia_da_cova')) {
		comprobar_redimension=true;
		redimensiona_transparencia();
		window.document.getElementById("control_acceso").style.display="block";
	}	
}
window.onresize=function() {if(comprobar_redimension) redimensiona_transparencia();}
function redimensiona_transparencia() {
	window.document.getElementById("control_acceso_transparencia").style.height=document.body.clientHeight+"px";
	window.document.getElementById("control_acceso_transparencia").style.width=document.documentElement.clientWidth+"px";
}
function comprobar_edad() {eres_mayor_edad(window.document.getElementById("chk_soy_mayor").checked);}
function eres_mayor_edad(mayor) {
	if(mayor) {
		window.document.getElementById("control_acceso").style.display="none";
		// remember, these are the possible parameters for Set_Cookie:
		// name, value, expires, path, domain, secure
		Set_Cookie( 'abadia_da_cova', 'mayor_de_edad', 1, '/', '', '' );
	} else {
		if(Get_Cookie('abadia_da_cova')) Delete_Cookie('abadia_da_cova', '/', '');
		window.document.location.href="./";
	}
}