function jsec(s) {  
  for (i=s.length-1;i>=0;i--) {
    document.write(s.charAt(i));
  }
}
