function chekea(){


	if(document.form_contacto.nombre.value==""){
		alert("DEBE INGRESAR SU NOMBRE");
		document.form_contacto.nombre.focus();
		return false;
	}else{
		if(!isNaN(document.form_contacto.nombre.value)){
			alert("NOMBRE INVALIDO");
			document.form_contacto.nombre.focus();
			return false;
		}
		for(i=0;i<10;i++){
			if(String([document.form_contacto.nombre.value]).indexOf(i) != -1){
			alert("NOMBRE INVALIDO");
			document.form_contacto.nombre.focus();
			return false;
			}
		}
	}
	
	if(document.form_contacto.fono.value==""){
		alert("DEBE INGRESAR SU FONO");
		document.form_contacto.fono.focus();
		return false;
	}else{
		for(i=65;i<91;i++){
			if(String([document.form_contacto.fono.value]).indexOf(String.fromCharCode(i)) != -1){
			alert("FONO INVALIDO");
			document.form_contacto.fono.focus();
			return false;
			}
		}
		for(i=97;i<123;i++){
			if(String([document.form_contacto.fono.value]).indexOf(String.fromCharCode(i)) != -1){
			alert("FONO INVALIDO");
			document.form_contacto.fono.focus();
			return false;
			}
		}
	}
	if(document.form_contacto.email.value==""){
		
		alert("DEBE INGRESAR SU EMAIL");
		document.form_contacto.email.focus();
		return false;
	}else{
		var atSign = Number(String([document.form_contacto.email.value]).indexOf("@"));
		var closeDot = Number(String([document.form_contacto.email.value]).indexOf(".", atSign));
		if (String([document.form_contacto.email.value]).indexOf("@") == -1 || String([document.form_contacto.email.value]).indexOf(".") == -1) {
			alert("EMAIL INVALIDO");
			document.form_contacto.email.focus();
			return false;
		}else if (closeDot-atSign<=1){
			alert("EMAIL INVALIDO");
			document.form_contacto.email.focus();
			return false;
		}
	}
	rad_val="";
	for (var i=0; i < document.form_contacto.servicio.length; i++) {
		if (document.form_contacto.servicio[i].checked){
			rad_val = document.form_contacto.servicio[i].value;
		}
   	}
	if(rad_val==""){
		
	}else{
		if(document.form_contacto.producto.value=="0"){
			servicio=rad_val.toUpperCase();
			alert("SELECCIONO "+servicio+" PERO NO UN PRODUCTO");
			return false;
		}
	}
	return true;
}