function strlen(strVar)
{
	return(strVar.length)
}

function trim(stringToTrim) 
{
	return stringToTrim.replace(/^\s+|\s+$/g,"");
}


