VBScript Reverse a string

Reverse a string

<html>
<body>

<script type="text/vbscript">
text = "Have A Nice Day!"
document.write(strReverse(text))
</script>

</body>
</html>