Function/hjælp
<%Function test(Win,lost)
If win > lost then
Response.write "<font color=""#00FF00"">" & win & " - " & lost & "</font>"
If win < lost then
Response.write "<font color=""#ff0000"">" & win & " - " & lost & "</font>"
if win = lost then
Response.write "<font color=""#ffff00"">" & win & " - " & lost & "</font>"
End if
end if
end if
end function
%>
<%
Response.write test(40,43)
%>
