

function apartados(){

	n=document.getElementById("nombre").value;
	a=document.getElementById("dni").value;
	m=document.getElementById("email").value;
	w=document.getElementById("comentario").value;
	
	if(n==''||a==''|| m==''||w==''){

		alert("Falta completar campo obligatorio");

	}else{
		document.frmApart.submit();	
	}	
}

function checkEmailSuscripcion() {
	
	// segun la selecicon del combo mostraremos las opciones de email
	
	var seleccion = document.getElementById('comboSuscripcion').value;
	
	if(seleccion>0) {
		document.getElementById('capasEmailSuscripcion').style.display = "block";
	} else {
		document.getElementById('capasEmailSuscripcion').style.display = "none";
	}
	
	document.getElementById('suscripcion').value = seleccion;
			
}

function asignarEnlace(nid, aid, op, cc, pos) {
	
	var seleccion = document.getElementById('suscripcion').value;
	window.location.href = "index.php?m=Apartados&op="+op+"&aid="+aid+"&nid="+nid+"&pos="+pos+"&suscripcion="+seleccion+"&cc="+cc;
	
}
