function DecodeText (pText)
{
     lText = "";
     for (i = 0 ; i <= pText.length ; i++ ) 
     {
        lText = lText + String.fromCharCode ( pText.charCodeAt (i) +28) ;
     }
     return  lText;
}
