<!-- Hide script from old browsers
		
function checkData()
{
if(document.BCform.firstname.value=="")
	{
	alert("Please enter your first name.");
	document.BCform.firstname.focus()
	document.BCform.firstname.select()
	return (false);
	}
if(document.BCform.lastname.value=="")
	{
	alert("Please enter your last name.");
	document.BCform.lastname.focus()
	document.BCform.lastname.select()
	return (false);
	}
if(document.BCform.address.value=="")
	{
	alert("Please enter your street address.");
	document.BCform.address.focus()
	document.BCform.address.select()
	return (false);
	}	
if(document.BCform.city.value=="")
	{
	alert("Please enter your city name.");
	document.BCform.city.focus()
	document.BCform.city.select()
	return (false);
	}	
if(document.BCform.state.value=="")
	{
	alert("Please enter your state abbreviation.");
	document.BCform.state.focus()
	document.BCform.state.select()
	return (false);
	}		
if(document.BCform.zip.value=="")
	{
	alert("Please enter your zip code.");
	document.BCform.zip.focus()
	document.BCform.zip.select()
	return (false);
	}
if(document.BCform.email.value=="")
	{
	alert("Please enter your email address.");
	document.BCform.email.focus()
	document.BCform.email.select()
	return (false);
	}

if(document.BCform.phone.value=="")
	{
	alert("Please enter your phone number.");
	document.BCform.phone.focus()
	document.BCform.phone.select()
	return (false);
	}
if(document.BCform.tdate.value=="")
	{
	alert("Please enter today's date.");
	document.BCform.tdate.focus()
	document.BCform.tdate.select()
	return (false);
	}
if(document.BCform.group.value=="")
	{
	alert("Please enter the name of your group or organization.");
	document.BCform.group.focus()
	document.BCform.group.select()
	return (false);
	}
if(document.BCform.groupsize.value=="")
	{
	alert("Please enter the number of people who will attend.");
	document.BCform.groupsize.focus()
	document.BCform.groupsize.select()
	return (false);
	}
if(document.BCform.type.value=="")
	{
	alert("Please enter the type of function.");
	document.BCform.type.focus()
	document.BCform.type.select()
	return (false);
	}
if(document.BCform.resdate.value=="")
	{
	alert("You must include a reservation date.");
	document.BCform.resdate.focus()
	document.BCform.resdate.select()
	return (false);
	}
if(document.BCform.starttime.value=="")
	{
	alert("Please enter a requested start time.");
	document.BCform.starttime.focus()
	document.BCform.starttime.select()
	return (false);
	}
start = -1
	for (i=0; i< document.BCform.start.length;i++)
	{
		if (document.BCform.start[i].checked)
		{start = i}
	}
	if (start == -1)
	{
		alert ("Please state the start time for your request (AM or PM).");
		return (false);
	}	

if(document.BCform.endtime.value=="")
	{
	alert("Please enter a requested end time.");
	document.BCform.endtime.focus()
	document.BCform.endtime.select()
	return (false);
	}
	
endt = -1
	for (i=0; i< document.BCform.endt.length;i++)
	{
		if (document.BCform.endt[i].checked)
		{endt = i}
	}
	if (endt == -1)
	{
		alert ("Please state the end time for your request (AM or PM).");
		return (false);
	}
  			
			
else{return true}			
}
	
// End hiding script from old browsers -->
