// all javascript functions for enquiry

	function contact(){
		var therr = '';
		if(cForm.name.value == ''){
			therr = '- your name\n';
		}
		if(cForm.email.value == ''){
			therr = therr + '- your email address\n';
		}
		if(therr != ''){
			alert('We still need the following information to process your enquiry:\n' + therr);
		}
		else{
			cForm.submit();
		}
	}
