String.prototype.strReplace = function() {
	return this.replace(/\s/gi, '');
}

String.prototype.getLenNoSpace = function() {
	return this.strReplace().length;
}

$ = function(id) {
	return document.getElementById(id);
}

$F = function(id) {
	return document.getElementById(id).value;
}