//-----------------------------------------------------------------------//
function stripLen(sVal)                                                  //
//-----------------------------------------------------------------------//
//          function name: stripLen()                                    //
//             created by: dustin brown                                  //
//             created on: 5/22/01                                       //
//                purpose: return the length of 'sVal' minus any spaces  //
//             parameters: sVal - the string value to be evaluated       //
//                returns: the length of sVal minus any spaces           //
// include files required: stripSpaces.js                                //
//-----------------------------------------------------------------------//
{
	sVal = stripSpaces(sVal);
	return sVal.length;
}
//End function stripLen()------------------------------------------------//