function notYet()
{
	window.alert('Function not yet available.');
}

function checkContactUs() {
	error=false;
	if (document.theForm.name.value=='')							{error=true;window.alert('Please enter your name.');document.theForm.name.focus();}
	//if (error==false&&document.theForm.telephoneNumber.value==''&&document.theForm.emailAddress.value=='')		{error=true;window.alert('Please enter a phone number or email address.');document.theForm.telephoneNumber.focus();}
	if (error==false&&document.theForm.telephoneNumber.value=='')	{error=true;window.alert('Please enter your phone number.');document.theForm.telephoneNumber.focus();}
	if (error==false&&document.theForm.emailAddress.value=='')		{error=true;window.alert('Please enter your email address.');document.theForm.emailAddress.focus();}
		if (error==false) {
			emailErr=false;
			str=document.theForm.emailAddress.value;
			if (str.indexOf("@")==-1)	{emailErr=true;}
			if (str.indexOf(".")==-1)	{emailErr=true;}
			if (str.indexOf(" ")!=-1)	{emailErr=true;}
			if (emailErr) {error=true;window.alert('Please enter a valid email address.');document.theForm.emailAddress.focus();}
		}
	if (error==false&&document.theForm.postcode.value=='')			{error=true;window.alert('Please enter your postcode.');document.theForm.postcode.focus();}
	if (error==false&&document.theForm.enquiry.value=='')			{error=true;window.alert('Please enter an enquiry.');document.theForm.enquiry.focus();}
	if (error==false&&document.theForm.how.value=='')				{error=true;window.alert('Please select how you heard about The Winebank.');document.theForm.how.focus();}
	if (error==false) {return true;} else {return false;}
}