function getLocationFolder() {
	var lastIndex = -1;
	var strLoc = document.location.toString();
	lastIndex = strLoc.lastIndexOf("/");
	if(lastIndex > 0) {
		strLoc = strLoc.substring(0, lastIndex+1);
	}
	return strLoc;
}