
if (!xb.Versions) {
	xb.Versions = new Array () ;
}
xb.Versions['encodeuri'] = '2005-11-22' ;

xb.EncodeURIComponent = function (text) {
	if (encodeURIComponent) {
		return encodeURIComponent (text) ;
	} else {
		return escape (text) ;
	}
}
