/* delete space in the string */
ContentTrimLeft( char*   pDest,   const   char*   pSrc, int iSrcLen )
{
    int  i=0;
    const char * t = pSrc;  
    while( i<iSrcLen && (*(t++) == ' ')  );  
    strcpy(pDest,   t-1);  
}