function crypt(stringa)
{
crittato = ""
for (a=stringa.length-1;a>-1;a--)
{
crittato = crittato + stringa.charAt(a)
}
return crittato
}