function CheckForm(theform)   {
	var msg="";
	if (theform.title.value=="") msg=msg+"Your Title..\n";
	if (theform.fullname.value=="") msg=msg+"Your Full Name..\n";
	if (theform.address1.value=="") msg=msg+"The First Line of your Address..\n";
	if (theform.town.value=="") msg=msg+"Your Town..";
	if (theform.county.value=="") msg=msg+"Your County/state..\n";
	if (theform.postcode.value=="") msg=msg+"Your Post/ZIP Code..\n";
	if (theform.email.value=="") msg=msg+"Your E-mail Address..\n";
	if (msg!="")  { msg="Some details are missing, please supply..\n\n"+msg; alert(msg); return false; }
	else   { theform.submit(); return true; }
	}



