// JavaScript Document
function vfSYS(theform) {
	retVal = true;
	errMsg = "";

	if (theform._Name.value == "") {
		retVal = false;
		errMsg += "Please provide your name.\n";
	}
	
	if (theform._Email.value == "") {
		retVal = false;
		errMsg += "Please provide your email address.\n";
	}
	
	if (theform._Locale.value == "") {
		retVal = false;
		errMsg += "Please indicate your locale.\n";
	}
	
	if (theform._The_Story.value == "") {
		retVal = false;
		errMsg += "The Story field is blank.\n";
	}
	
//	if (theform._Documentation.value == "") {
//		retVal = false;
//		errMsg += "Please indicate whether or not you have documented proof of your story.\n";
//	}
	
	if (!theform._Terms_and_Conditions[0].checked) {
		retVal = false;
		errMsg += "You cannot submit this form unless you agree to the Conditions of Use.\n";
	}
	
	if (!retVal) {
		alert(errMsg);
	}

	return retVal;
}
