function checkContact()
{
	var frmContact = document.getElementById('frmContact');

	var subject = frmContact.subject.value;
	var body = frmContact.body.value;
	var fromname = frmContact.fromname.value;
	var fromemail = frmContact.fromemail.value;

	var msg = ''

	if (fromname == '')
		msg += 'You must enter a your name before sending the message.\n';

	if (fromemail == '')
		msg += 'You must enter a valid email address before sending the message.\n';

	if (subject == '')
		msg += 'You must enter a subject before sending the message.\n';

	if (body == '')
		msg += 'You must enter a message body before sending the message.\n';

	if (msg != '')
	{
		alert(msg);
		return false;
	}

}


document.getElementById('frmContact').onsubmit=checkContact;
document.getElementById('frmContact').fromname.focus();

