Not in VBScript you don't. You don't use the return keyword, you use the function name
Function intRound(intField)
temp = intField mod 5
If temp <> 0 then
intField = intField + (5 - temp)
End if
intRound = intField
End Function
<%
Chris Zwemke
chris @ scarabmedia . com
www.pilotcart.com
%>