/*
 * js language class
 * all rights reserved
 */
 
lang = {

	get: function (lang_const) {
		// if contant not found return lang_const
		if(container[lang_const] == "undefined") {
			return lang_const;
		}
		return container[lang_const];
	}
}
