// empty constructor
function CustomerUserExit()
{
}

CustomerUserExit.prototype = new UserExit();

CustomerUserExit.prototype.BookingFormOnLoad = function()
{
	// preselect "course" for add new booking item
	if($('_item_type'))
	{
		$('_item_type').value = 'course';	
		_item_type_selected($('_item_type'));
	}
}

CustomerUserExit.prototype.BookingFormOnCancel = function()
{
}

CustomerUserExit.prototype.BookingFormOnSubmit = function(event)
{
	return true;
}

CustomerUserExit.prototype.ParticipantFormOnCancel = function()
{
}

var Customer_UserExit = new CustomerUserExit();

