Thanks again snowboardr, I've created a form for the employees to input their time (i'm going to hardcode the times in a dropdown list ex. 6:00AM, 7:00AM etc etc so there are no mistakes with the employees inputting the time)
Please take a look at the code for the time calc page, and let me know if you can forsee any problems like for instance what if someone starts at midnight and ends at 3:00pm. stuff like that. Thanks a million for all of your input, i really appreciate it.
====================== timeCalc =====================
Dim strStart, strLunchOut, strLunchIn, strEnd, strMornHours, strAftHours, strTotalHours
Dim strTime1, strTime2, strTime3, strTime4
strStart = Request.Form("strTime1"

strLunchOut = Request.Form("strTime2"

strLunchIn = Request.Form("strTime3"

strEnd = Request.Form("strTime4"
strMornHours = DateDiff("h", strStart, strLunchOut)
strAftHours = DateDiff("h", strLunchIn, strEnd)
strTotalHours = strMornHours + strAftHours
Response.Write strMornHours & "<br>"
Response.Write strAftHours & "<br>"
Response.Write strTotalHours