/*Utility methods*/

/*Trims leading and trailing spaces from a String*/
function trim(value) {
  if(!value){
	  return value;
  }
  value = value.replace(/^\s+/,'');
  value = value.replace(/\s+$/,'');
  return value;
}	
