	function isEmptyCombo(comboObject) {					
		if (comboObject[0].selected) {
			return true;
		} else {
			return false;
		} 
	}
	
	function isEmpty(textObject) {
		if (textObject.value == "") {
			return true;
		} else {
			return false;
		}
	}			
