<%ContentTitle = "Job Bank"%> <% dDate= Date() 'Open the Database and Retrieve Available Internships Set objRSpagedata1 = Server.CreateObject ("ADODB.recordset") objRSpagedata1.Open "SELECT * FROM jobbank WHERE [end date] >= '" & dDate & "' AND resume = 0 AND intern = 0 ORDER BY id DESC", conn, adOpenDynamic, adLockPessimistic, adCMDText 'Establish the Empty Output Setting If objRSpagedata1.eof Then output1 = "No Current Positions Available, Please Check Back Soon!" Else output1 = "" End If 'Open the Database and Retrieve Available Interns Set objRSpagedata2 = Server.CreateObject ("ADODB.recordset") objRSpagedata2.Open "SELECT * FROM jobbank WHERE [end date] >= '" & dDate & "' AND resume = 1 AND intern = 0 ORDER BY id DESC", conn, adOpenDynamic, adLockPessimistic, adCMDText 'Establish the Empty Output Setting If objRSpagedata2.eof Then output2 = "No Current Potential Employees Available, Please Check Back Soon!" Else output2 = "" End If %>
Welcome to the IFEA Job Bank!

Getting a job posted is simple. Just send a Job Title, Description, Contact Info, Expiration Date and the name of your IFEA Member Organization to nia@ifea.com. Please be sure your e-mail subject contains the word Job Bank. If you do not receive confirmation of posting in 24 hours please contact IFEA Headquarters at (208)433-0950 ext *821.
If you have an image you would like posted please send it in .jpg/.gif/.bmp format and no more than 150 pixels in any dimension. If you have a form for download under 500k in .doc/.rtf/.txt/.pdf format that can be posted as well.
If you are looking for employment please send in the same info with your resumé and the name your IFEA membership is listed under.
All inquiries pertaining to the jobs listed below must be made directly with the company offering the position.
Employment Opportunities

<%= output1 %> <% 'Set up the Position Titles to be Anchor Links for the Content Below IF NOT objRSpagedata1.EOF THEN DO UNTIL objRSpagedata1.EOF%> ');popupWin.window.focus();"><%=objRSpagedata1("title")%> for <%=objRSpagedata1("employer")%>
<%=objRSpagedata1("location")%>
Ends: <%=objRSpagedata1("end date")%> <% objRSpagedata1.MOVENEXT LOOP objRSpagedata1.CLOSE END IF %>
Professional Personnel

<%= output2 %> <% 'Set up the Position Titles to be Anchor Links for the Content Below IF NOT objRSpagedata2.EOF THEN DO UNTIL objRSpagedata2.EOF%> ');popupWin.window.focus();"><%=objRSpagedata2("employer")%>, <%=objRSpagedata2("title")%>
<%=objRSpagedata2("location")%>
Ends: <%=objRSpagedata2("end date")%> <% objRSpagedata2.MOVENEXT LOOP objRSpagedata2.CLOSE END IF %>