$(document).ready(function() { 
	$('#form').ajaxForm({ 
		dataType: 'json',
		success: processJson,
		url: 'oirs_encuesta_guarda.php'
	}); 
	//$('#nombre_id').alpha({nocaps:true,allow:" "}); /* Solo permite letras */
	//$('#apaterno_id').alpha({nocaps:true,allow:" "}); 
	//$('#amaterno_id').alpha({nocaps:true,allow:" "}); 
	//$('#empresa_id').alpha({nocaps:true,allow:" "});
	//$('#correo_id').alphanumeric({allow:"@."});
	//$('#correo_id').alphanumeric({ichars:"\xF1\xD1"});/*sin ñ o Ñ*/
	//$('#direccion_id').alphanumeric({nocaps:true,allow:".,# "}); /*Permite datos alfanumericos */
	//$('#telefono_id').numeric({allow:"/-",ichars:"\xF1\xD1"});
	
	/*$(function() {
		$("#main").addClass("txtformError")
		.removeClass("red");
	});*/
	
}); 

function processJson(data) {
	if(data.msg != 'OK'){
		//alert(data.msg);
		$('#sexo').removeClass("txtformError"); $('#sexo_2').html("&nbsp;");
		$('#redad').removeClass("txtformError"); $('#redad_2').html("&nbsp;");
		$('#actividad').removeClass("txtformError"); $('#actividad_2').html("&nbsp;");
		$('#resp1').removeClass("txtformError"); $('#resp1_2').html("&nbsp;");
		$('#resp2').removeClass("txtformError"); $('#resp2_2').html("&nbsp;");
		$('#resp3').removeClass("txtformError"); $('#resp3_2').html("&nbsp;");
		$('#resp4').removeClass("txtformError"); $('#resp4_2').html("&nbsp;");
		$('#button').removeClass("txtformError"); 
		$("#"+data.id).addClass("txtformError");
		$("#"+data.id+"_2").html(data.msg);
		
	}else{
		location.href='http://www.minagri.gob.cl/oirs_encuesta_fin.php';

	}

}



