// JavaScript Document
function validateNonEmpty(inputField) {
	if (inputField.value.length == 0 ) {	
		return false;
	}
	else {
		return true;
	}
}
