function Procesar(Accion, e) {
        
		switch(Accion) {
			
			case "Enviar":
				if(!FIC_checkForm(e))
					return;				       
                    document.getElementById('hdnProcesar').value = Accion;
				    document.getElementById('frmAtencion').submit();
				break;
			case "Borrar":
			    document.getElementById('nombre').value = "";
			    document.getElementById('apellido').value = "";
			    document.getElementById('titulo').value = "";
			    document.getElementById('Organizacion').value = "";
			    document.getElementById('Direccion1').value = "";
			    document.getElementById('Direccion2').value= "";
			    document.getElementById('Ciudad').value = "";
			    document.getElementById('Estado').value = "";
			    document.getElementById('CP').value = "";
			    document.getElementById('pais').value = "0";
			    document.getElementById('mail').value = "";
			    document.getElementById('comments').value = "";
			    document.getElementById('Telefono').value = "";
				break;
		}
}
function AbrirPopUp(Ruta)
{
	window.open(Ruta,'','top=0,left=0,width=650,height=502,scrollbars=no');
}

function AbrirSitio(Ruta)
{
    window.close();
	window.open(Ruta);
}
function AbrirMenu(Ruta)
{
    window.close();
	window.open(Ruta,'','top=0,left=0,width=650,height=600,scrollbars');
}