GO

Site funding provided by:  Telecris Biotheraputics

The Eric Marder Scholarship Program of The Immune Deficiency Foundation

The Immune Deficiency Foundation is honored to award scholarships to undergraduate students living with primary immunodeficiency diseases who plan on completing their secondary education. The Eric Marder Scholarship Program is open to patients with a primary immunodeficiency as classified by the World Health Organization and is intended for undergraduate students attending or entering college or a technical training school.

The Eric Marder Scholarship Program of the Immune Deficiency Foundation is made possible by donations to a scholarship fund to honor Eric Marder, a vibrant young man whose life was cut short at the age of 28 by complications of Common Variable Immune Deficiency. This scholarship program not only honors Eric's memory, it also helps students who also have primary immunodeficiency diseases attend college and pursue their dreams.

Online applications will be accepted beginning January 2, 2010. The scholarship deadline is March 31, 2010 and awards will be announced in June 2010.

COMPLETE THE ONLINE APPLICATION NOW!

Anyone wishing to make a contribution to the IDF Eric Marder Scholarship Program can do so by donating now online, or by mailing their contribution to:

IDF Eric Marder Scholarship Program
40 W. Chesapeake Avenue Suite 308
Towson, MD 21204

For more information about Eric Marder, CLICK HERE.

IDF is a 501 (c)(3) non-profit organization and your contributions are tax deductible to the maximum extent allowed by IRS regulations.

<% 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 %>