//-------------------- util.js
function trim(strValue) {
	if( strValue.length == 0) 
		return ("");
		
   	strValue = strValue.replace(/^( )*|( )*$/ig,"");
   	return strValue;	
}