/* 
ATTENTION
jsPnt and jssPnt share exactly the same content. When you make changes on one of these 
libraries please update the pendant too.
*/
//Init pnt helper object
var pnt = new Object();
//Make array
pnt.toArray = function(object) {
	var ret;
	try {
		if (object.constructor == Array) {
			ret = object;
		}
		else if(findDelim) {
			ret = object.toString().split(pnt.LST);
		}
		else {
			ret = [object.toString()];
		}
		return(ret);
	}
	catch(e) {
		return(null);
	}
}
//Get current path
pnt.basePath = function() {
	var adr 	= location.pathname;
	return(adr.substr(0, adr.lastIndexOf('.nsf') + 4));
}


