ASP Reverse a string

Reverse a string

<html>
<body>

<%
sometext = "How are you?"
response.write(strReverse(sometext))
%>

</body>
</html>