//       1. WithoutContent() -- check if the text, textarea, password, file, or other text input fields has no content.
function WithoutContent(ss) {
if(ss.length > 0) { return false; }
return true;
}
//       2. NoneWithContent() -- check if none of the set of text, textarea, password, file, or other text input fields have content. (Set: More than one with the same field name.)
function NoneWithContent(ss) {
for(var i = 0; i < ss.length; i++) {
	if(ss[i].value.length > 0) { return false; }
	}
return true;
}
//       3. NoneWithCheck() -- check if none of the set of radio buttons or checkboxes are checked. (Set: More than one with the same field name.)
function NoneWithCheck(ss) {
for(var i = 0; i < ss.length; i++) {
	if(ss[i].checked) { return false; }
	}
return true;
}
//       4. WithoutCheck() -- check if the single radio button or checkbox is unchecked.
function WithoutCheck(ss) {
if(ss.checked) { return false; }
return true;
}
//       5. WithoutSelectionValue() -- check if selected drop-down list or select box entries have no value.
function WithoutSelectionValue(ss) {
for(var i = 0; i < ss.length; i++) {
	if(ss[i].selected) {
		if(ss[i].value.length) { return false; }
		}
	}
return true;
}
