<!--
function reverse(inp) {
/*
Takes any string and reverses the order of the characters.
*/
    var outp="";
    for (i=0;i<inp.length;i++) {
     outp=inp.charAt(i) + outp;
    }
    return outp ;
}
//-->

