String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.slice(1);
}
function isEmpty(target){
	if(typeof target == "undefined"){
		return true;
	}
	if(target.length == 0){
		return true;
	}
	return false;
}
