<SCRIPT LANGUAGE="JavaScript">
<!--
function strRev(str)
{
return str.split("").reverse().join("")
}

alert(strRev("赵兄托我帮你办点事"))
//-->
</SCRIPT>