function checkFields()
{
	var id;
	id = document.getElementById('NameID');
	if (id.value == '')
	{
		alert('Name cannot be empty;');
		id.focus();
		return false;
	}

	id = document.getElementById('TelephoneID');
	if (id.value == '')
	{
		alert('Telephone cannot be empty;');
		id.focus();
		return false;
	}

	id = document.getElementById('MessageID');
	if (id.value == '')
	{
		alert('Message cannot be empty;');
		id.focus();
		return false;
	}


	return true;
} 
