function initRowsObj( NUMROWS , IS_ERROR , ERROR_MSG ){
this.NUMROWS = NUMROWS;
this.IS_ERROR = IS_ERROR;
this.ERROR_MSG = ERROR_MSG;
this.COLOMNS = new Array();
this.RESULT = new Array();
}

// replaceRowElements
function RRE( str ){
return empty( str )?'':str.replace( /&apos;/g , '&#39;' ).replace( /:DELIM:/g , "|" ).replace( /:LF:/g , "\n" ).replace( /:CR:/g , "\r" ).replace( /:TAB:/g , "\t" );
}
