
	/********************************************/
	/* Clase curso								*/
	/*											*/
  

		
	/********************************************/
	/* Carga de datos							*/
	/*											*/
	
  	
  	
  	/********************************************/
	/* On load									*/
	/*											*/
		
	window.addEvent('domready', function() {
		$('boton_alerta').addEvent('click',function(e){
			$('alerta').setStyle('display','none');
			});
		
					
		$('envia_civ').addEvent('click',function(e){
				$ZVK.validar('vacio','correo_civ');
				$ZVK.validar('correo','correo_civ');
				$ZVK.validar('igual',['correo_civ','re_correo_civ'])
				$ZVK.validar('check','datos_civ');
			if(arrayerrores.length==0){
			var asunto = $('for_asunto').get('value').replace(/\n/g, "____");
			if (asunto.trim()=="") asunto="Sin comentarios"
				if(asunto.substr(asunto.length-4,asunto.length)=="____")asunto = asunto.substr(0,asunto.length-4);
			var datos = "mail="+$('correo_civ').get('value')+"&asunto="+asunto; 
			
			var peticion = new Request({
				'data': datos,
				'url':'inscribir_infocivilia.php',
				'method':'get' 
				});
				peticion.onRequest = function(){
					
					}
					
				peticion.onSuccess = function(){
					
					$('formu_civ').reset();
					var res = JSON.decode(this.response.text);
					$ZVK.alerta('OK',res.mensaje);
					}
				peticion.send();
				}
				
			else{
				$ZVK.alerta('Atención',arrayerrores);
				arrayerrores = [];
				}
			});
		
		
		});
