String.empty = function(TestString) {
	if(TestString == "" || !TestString ) return true;
	else return false;
	
}