GO

Site funding provided by:  Telecris Biotheraputics

IDF Survey Research Center Capabilities

The goal of the survey research center is to not only provide the most accurate data on primary immunodeficiency diseases for research, advocacy, and marketing, but to develop a steady revenue stream to further IDF's mission on behalf of patients. IDF will continue to work with industry, government and individual researchers to provide important data for making decisions on immunoglobulin replacement therapy, primary immunodeficiency research and regulatory guidelines that impact our community.

The Immune Deficiency Foundation maintains the complete anonymity of all of our survey respondents. All respondent provided information is de-identified with all answers analyzed in the aggregate so as to prevent the identification of any one individual. Under no circumstances does IDF ever provide patient contact information to outside organizations without the patient's prior consent.

Our patient and medical professional database provides IDF with some unique capabilities:

Ability to screen participants by:

  • PIDD Patient/Physician/Nurse
  • Product use
  • SCIG use
  • PIDD Patient or Caregiver
  • Various demographics (age, gender, diagnosis, etc.)

With over 12 years of experience in conducting surveys and studies with our community we can provide quick turn-around and results for:

  • Focus groups
  • Individual Depth Interviews
  • Surveys
  • Telephone
  • Internet
  • "Pen & paper"
  • Clinical trial recruitment

IDF can provide for any and all aspects of the management and implementation of these research projects:

  • Sample framework
  • Recruitment and sample management
  • Design of study instrument(s)
  • Data collection
  • Data analysis
  • Report writing

If you would like to partner with IDF on a project or study, or would like more information, please contact IDF's Director of Survey Research at 800.296.4433 or idf@primaryimmune.org.

<% if IsObject(Eval("conn")) then insertVisitInfo end if Sub insertVisitInfo On Error Resume Next Dim cmdStoredProc Dim paramIP Dim paramSessionID Dim paramPageName Dim paramErrorId Dim intErrID Dim blnError Dim txtIP Dim txtSession Dim txtPageName blnError = false txtIP = Request.ServerVariables("REMOTE_ADDR") txtSession = Session.SessionID txtPageName = Request.ServerVariables("SCRIPT_NAME") set cmdStoredProc = Server.CreateObject("ADODB.Command") cmdStoredProc.ActiveConnection = conn cmdStoredProc.CommandText = "sp_insertSiteTraffic" cmdStoredProc.CommandType = &H0004 set paramIP = cmdStoredProc.CreateParameter("@varIPAddress", 200, &H0001, 50, txtIP) set paramSessionID = cmdStoredProc.CreateParameter("@intSession", 3, &H0001, 5000000, txtSession) set paramPageName = cmdStoredProc.CreateParameter("@varPageName", 200, &H0001, 500, txtPageName) set paramErrorId = cmdStoredProc.CreateParameter("@iErr", 3, &H0002) paramIP.Value = txtIP paramSessionID.Value = txtSession paramPageName.Value = txtPageName cmdStoredProc.Parameters.Append paramIP cmdStoredProc.Parameters.Append paramSessionID cmdStoredProc.Parameters.Append paramPageName cmdStoredProc.Parameters.Append paramErrorId cmdStoredProc.Execute, ,128 //response.write err.Number & ":" & err.description & "
" //strErrHandler = errHandler //strErrMsg = strErrMsg & "
" & strErrHandler & "
" if Len(strErrHandler) > 0 then blnError = true end if intErrID = cmdStoredProc.Parameters("@iErr").Value //Response.Write txtSession & "
" //Response.Write "intErrID =" & intErrID & "
" //Response.Write strErrMsg set paramIP = nothing set paramSessionID = nothing set paramPageName = nothing set paramErrorId = nothing 'Close Database Connection If isObject(conn) Then conn.Close Set conn = Nothing End If End Sub %>