﻿ /***********************************************************************
 * removeBad          									       	        *
 ************************************************************************
 * Remove Bad Characters                                                *
 * Parameters:          						               		    *
 *   - strValue: String Value                                           *
 * Results:             											    *
 *   - String with removed bad characters                               *
 ***********************************************************************/
     
function removeBad(strValue) 
{
    strValue = strValue.replace(/^\s*|\s*$/g,'');
    return strValue;
} 
