%
displayHeader()
set jobRS = objConn.Execute("SELECT * FROM Job WHERE ID = " & Request("id"))
if (checkSecurity(30) or (checkSecurity(20) and Session("user_company")=jobRS("company_id") )) then
jobName = jobRS("job")
Response.Write "
Bidders List in FACSys Format for '" & jobName & "'
" & vbcrlf
Response.Write "Please enter your dial prefix and/or postfix in the boxes below. If you must dial a 9 before placing external calls, enter '9,' in the prefix field. If you must dial '990' after placing external calls, enter ',990' in the postfix field. The comma will cause a delay before continuing to dial. You may enter multiple commas to increase delay. e.g. ',,990'.
"
Response.Write "" & vbcrlf
else
Response.Write("Access Denied")
end if
displayFooter()
%>