
function checkData()
{

if(document.KCCform.nominee.value=="")
	{
	alert("Please enter the nominee NAME.");
	document.KCCform.nominee.focus()
	document.KCCform.nominee.select()
	return (false);
	}
if(document.KCCform.dept.value=="")
	{
	alert("Please enter the nominee's DEPARTMENT.");
	document.KCCform.dept.focus()
	document.KCCform.dept.select()
	return (false);
	}
ngroup = -1
	for (i=0; i< document.KCCform.ngroup.length;i++)
	{
		if (document.KCCform.ngroup[i].checked)
		{ngroup = i}
	}
	if (ngroup == -1)
	{
		alert ("Please state the nominee's EMPLOYEE GROUP.")
		document.KCCform.ngroup[0].focus()
		return (false);
	}		
if(document.KCCform.what.value=="")
	{
	alert("Please describe WHAT the employee has done.");
	document.KCCform.what.focus()
	document.KCCform.what.select()
	return (false);
	}	
if(document.KCCform.benefit.value=="")
	{
	alert("Please describe the BENEFIT to the College.");
	document.KCCform.benefit.focus()
	document.KCCform.benefit.select()
	return (false);
	}	
if(document.KCCform.when.value=="")
	{
	alert("Please state WHEN the event occured.");
	document.KCCform.when.focus()
	document.KCCform.when.select()
	return (false);
	}		
if(document.KCCform.where.value=="")
	{
	alert("Please state WHERE the event occurred.");
	document.KCCform.where.focus()
	document.KCCform.where.select()
	return (false);
	}
if(document.KCCform.expectation.value=="")
	{
	alert("Please describe WHY this event exceeded expectations?");
	document.KCCform.expectation.focus()
	document.KCCform.expectation.select()
	return (false);
	}
if(document.KCCform.mission.value=="")
	{
	alert("Please state HOW this event fostered the College mission.");
	document.KCCform.mission.focus()
	document.KCCform.mission.select()
	return (false);
	}
if(document.KCCform.emp.value=="")
	{
	alert("Please enter your NAME.");
	document.KCCform.emp.focus()
	document.KCCform.emp.select()
	return (false);
	}
if(document.KCCform.yourtitle.value=="")
	{
	alert("Please enter your TITLE.");
	document.KCCform.yourtitle.focus()
	document.KCCform.yourtitle.select()
	return (false);
	}

group = -1
	for (i=0; i< document.KCCform.group.length;i++)
	{
		if (document.KCCform.group[i].checked)
		{group = i}
	}
	if (group == -1)
	{
		alert ("Please state your EMPLOYEE GROUP.")
		document.KCCform.group[0].focus()
		return (false);
	}
	
if(document.KCCform.ext.value=="")
	{
	alert("Please enter your phone EXTENSION.");
	document.KCCform.ext.focus()
	document.KCCform.ext.select()
	return (false);
	}
if(document.KCCform.email.value=="")
	{
	alert("Please enter your E-MAIL address.");
	document.KCCform.email.focus()
	document.KCCform.email.select()
	return (false);
	}	
if(document.KCCform.date.value=="")
	{
	alert("Please enter the DATE.");
	document.KCCform.date.focus()
	document.KCCform.date.select()
	return (false);
	}	

	
else{return true}			
}
	
