/*
	Author: DD
	Date: 2007/10/25
	Desc: common javascript function
*/

// remove the starting and ending space in a string
function trim(str){
   return str.replace(/^\s*|\s*$/g,"");
}