function CheckData(){
	f = document.frmFB;
	if (f.FullName.value == ""){
		alert("Please enter Your Name now.");
		f.FullName.focus();
		return false;
	}
	if (f.Rate_Rank.value == ""){
		alert("Please enter Rate/Rank now.");
		f.Rate_Rank.focus();
		return false;
	}
	if (f.email.value == ""){
		alert("Please enter E-Mail Address now.");
		f.email.focus();
		return false;
	}
	if (f.Topic.value == ""){
		alert("Please enter Topic now.");
		f.Topic.focus();
		return false;
	}
	if (f.IssueDate.value == ""){
		alert("Please enter Faceplate Issue Date now.");
		f.IssueDate.focus();
		return false;
	}				
	if (f.Comments.value == ""){
		alert("Please enter Your Comments now.");
		f.Comments.focus();
		return false;
	}		
	if (f.FB.value != "NAVY YARD DC"){
		return false;
	}		
	f.submit();
}