var validationFuncs = {
	checkBox: function(elm) {
		if(document.getElementById(elm).checked) {
			return true;
		} else {
			return false;
		}
	}
}

function getFunc(func, elm) {
	if(func=='checkBox') { 	
		return validationFuncs.checkBox(elm.id);
	}
}
