<!-- #INCLUDE FILE="bkitutillib.asp" -->


<%
'list vars to pass as hidden fields so will be passed back to calling form
caction 		= request("caction")
if caction="lock" and not fileexists("status\Uploading.txt") = True then 
	lcvar = createfile("status\Uploading.txt","Do not delete this file, used with bkitstatus.asp")
else 
	if caction = "unlock" then
		deletefile("\status\Uploading.txt")
	end if
end if

response.redirect("bkitstatus.asp")
%>
