
function valForm() {
var wqform = document.submitJoinTeam;

	if (wqform.reportTitle.value == "" || wqform.reportTitle.value == null) {
		alert("Please enter the Title of your Report.");
		wqform.reportTitle.focus();
		return false;
	}

	if (wqform.name.value == "" || wqform.name.value == null) {
		alert("Please enter your Name.");
		wqform.name.focus();
		return false;
	}


	if (wqform.reportType.options[wqform.reportType.selectedIndex].value == "Please Choose") {
		alert("Please select the Type of Report.");
		wqform.reportType.focus();
		return false;
	}


	var descriptiveSize;
	var descriptiveCount;
	descriptiveCount = wqform.reportText.value
	descriptiveSize = descriptiveCount.length;
	if (descriptiveSize < 1) {
		alert("Please enter the Report Text.");
		wqform.reportText.focus();
	return false;
	}
}