function fcSolicitarInformacion(){	
	var bError = false;
	
	// Comprobar que ha puesto un nombre
	if(document.getElementById('fcNombre').value == ''){
		document.getElementById('fcNombreError').style.display = 'inline';
		bError = true;
	}
	
	// Comprobar que ha puesto un email
	if(document.getElementById('fcEmail').value == ''){
		document.getElementById('fcEmailError').style.display = 'inline';
		bError = true;
	}
		
	// Si no hay errores mostrar informacion de confirmacion de envio correcto
	if(bError == false){
		document.getElementById('fcBoton').innerHTML = 'Solicitud enviada OK';	
		var params = '';
		params += 'nombre='+document.getElementById('fcNombre').value;
		params += '&email='+document.getElementById('fcEmail').value;
		params += '&telefono='+document.getElementById('fcTelefono').value;
		setSyncRequest('GET', 'php/solicitarInformacion.php', params, 'fcBoton');		
	}
}

function fcBorrarError(campo){
	document.getElementById(campo).style.display = 'none';
}