function formCheck(theform) {
	var missingfields = ""
	var bmissing = false
	if (theform.webaddress.value == "") {
		missingfields = "  Web Address\n"
		bmissing = true
	}
	if (theform.info.value == "") {
		missingfields += "  Description\n"
		bmissing = true
	}
	if (bmissing) {
		alert("Please complete the following fields before submitting the form:\n\n" + missingfields)
		return false
	}
	else {
		return true
	}
}
		