function CheckContactUsForm()
		{
			var errString;
			var errCount;
			
			errCount =0;
			errString = '';
			
			if (document.frmContactUs.name.value == '' || document.frmContactUs.name.value == 'Enter name')
				{
					errCount++;
					errString += '	- You must supply a name.\n\n';
				
				}
			if (document.frmContactUs.email.value == '' || document.frmContactUs.name.value == 'Enter email address')
				{
					errCount++;
					errString += '	- You must supply an email address.\n\n';
				
				}
			
			if (document.frmContactUs.message.value == '' || document.frmContactUs.name.value == 'Enter comment')
				{
					errCount++;
					errString += '	- You must supply a comment.\n\n';
				
				}
				
			if (errCount > 0)
				{
					alert('The following errrors have occurred on this form.\n\n' + errString + '\n\nPlease correct before proceeding');
					return false;
				}
			else
				{
				
					return true;
				}
		}
