﻿function ltrim(str, chars) {
	chars = chars || "\\s";
	return str.replace(new RegExp("^[" + chars + "]+", "g"), "");
}

Ext.BLANK_IMAGE_URL = './ext/resources/images/default/s.gif';