<!--
/**
 * This method checks if all the characters in the string are
 * valid alphabetic characters.
 */
function noSpecial(pString)
{
    var lAllowedCharacters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_/. ";
   var lIsSpecial = true;
   var lCount = 0;

   while (lCount < pString.length)
   {
      if (lAllowedCharacters.indexOf(pString.charAt(lCount).toUpperCase()) < 0)
      {
         lIsSpecial = false;
      }
      lCount++;
   }
   return lIsSpecial;
}
-->
