<!-- Hide script from old browsers
		
function checkData()
{
if(document.KCCform.firstname.value=="")
	{
	alert("Please enter your first name.");
	document.KCCform.firstname.focus()
	document.KCCform.firstname.select()
	return (false);
	}
if(document.KCCform.lastname.value=="")
	{
	alert("Please enter your last name.");
	document.KCCform.lastname.focus()
	document.KCCform.lastname.select()
	return (false);
	}
if(document.KCCform.birthdate.value=="")
	{
	alert("Please enter your birthdate.");
	document.KCCform.birthdate.focus()
	document.KCCform.birthdate.select()
	return (false);
	}
if(document.KCCform.address.value=="")
	{
	alert("Please enter your street address.");
	document.KCCform.address.focus()
	document.KCCform.address.select()
	return (false);
	}	
if(document.KCCform.city.value=="")
	{
	alert("Please enter your city name.");
	document.KCCform.city.focus()
	document.KCCform.city.select()
	return (false);
	}	
if(document.KCCform.state.value=="")
	{
	alert("Please enter your state abbreviation.");
	document.KCCform.state.focus()
	document.KCCform.state.select()
	return (false);
	}		
if(document.KCCform.zip.value=="")
	{
	alert("Please enter your zip code.");
	document.KCCform.zip.focus()
	document.KCCform.zip.select()
	return (false);
	}
if(document.KCCform.areacode.value=="")
	{
	alert("Please enter your area code.");
	document.KCCform.areacode.focus()
	document.KCCform.areacode.select()
	return (false);
	}
if(document.KCCform.phone.value=="")
	{
	alert("Please enter your phone number.");
	document.KCCform.phone.focus()
	document.KCCform.phone.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);
	}
date = -1
	for (i=0; i< document.KCCform.date.length;i++)
	{
		if (document.KCCform.date[i].checked)
		{date = i}
	}
	if (date == -1)
	{
		alert ("Please choose an Orientation Date!")
		document.KCCform.date[0].focus()
		return (false);
	}
			
else{return true}			
}
	
// End hiding script from old browsers -->