// JavaScript Document

 function checkForm3(form)
  {

	
	// CHECK BLANK
	if (form.firstDate.value == '') {
		form.firstDate.focus();
		return false;
	} 
	
	// CHECK BLANK
	if (form.endDate.value == '' && form.Ticket.value == 'true') {
		form.endDate.focus();
		return false;
	} 
	
	//alert("All input fields have been validated!");	
	document.form.submit();
	//return true;
	
  } 
  
  
  