function arrangeCallBack() {
	document.location.href="contact.php";
}

function enquire(subject) {
	document.location.href='mailto:'+enquiriesEmailAddress+'?subject='+subject;
}

function book(subject) {
	document.location.href='mailto:'+enquiriesEmailAddress+'?subject='+subject+'&body=I\'d like to make a booking for the above event.%0A%0APlease contact me using the following details:%0A%0A(Please complete)%0A%0AName: %0ACompany: %0ATelephone: %0AE-mail: ';
}

function newWindow(url) {
	var x=window.open(url);
	x.focus();
}