<!-- Copyright (c) Ormskirk & Croston Beekeepers Branch 2006-2008. All rights reserved.

// The year of the course.
function getCourseYear()
	{
	document.write('2010');	
	}

// The cost of a Registered Member.	
function getRegisteredMemberCost()
	{
	document.write('&#163;18');		// &#163; is the pound sign.
	}

// The christian name of the person handling equipment.	
function getEquipFirstName()
	{
	document.write('Mark');
	}

// The surname of the person handling equipment.
function getEquipLastName()
	{
	document.write('Ball');
	}

// The full name of the person handling equipment.	
function getEquipAllName()
	{
	getEquipFirstName();
	document.write(' ');
	getEquipLastName();
	}
//!-->