function submitCheckout(){
	
	var theForm = $("#frmCheckout");
	
	var theError = $("#divCheckoutFormError");
	
	var theTitle = $("#fmTitle");
	var theFName = $("#fmFName");
	var theLName = $("#fmLName");
	var theAddress1 = $("#fmAddress1");
	var theTown = $("#fmTown");
	var thePostcode = $("#fmPostcode");
	
	theError.hide();
	theError.html("");

	for (i=1;i<=1;i++){
	if (!theTitle.val()){
		theTitle.focus();
		theError.html("Please give a title");
		break;
	}
	
	if (!theFName.val()){
		theFName.focus();
		theError.html("Please give a first name");
		break;
	}
	
	if (!theLName.val()){
		theLName.focus();
		theError.html("Please give a last name");
		break;
	}
	
	if (!theAddress1.val()){
		theAddress1.focus();
		theError.html("Please give an address");
		break;
	}
	
	if (!theTown.val()){
		theTown.focus();
		theError.html("Please give a town");
		break;
	}
	
	if (!thePostcode.val()){
		thePostcode.focus();
		theError.html("Please give a postcode");
		break;
	}
	}
	
	if (theError.html()){
		theError.fadeIn();
		return false;
	}
	
	theForm.submit();
	
}
