// SoundFields Valid Contact JavaScript Document

// check for null and for empty
function isFilled(elm) {
	if (elm.value === "" || elm.value === null) {
		return false;
	}
	else {
		return true;
	}
}

// check for email addy: looking for [@] & [.]
function isemail(elm) {
	if (elm.value.indexOf("@") != "-1" && elm.value.indexOf(".") != "-1" && elm.value != " ") {
		return true;
	}
	else {
		return false;
	}
}
	