function checkForm(frmForm) {
			
	var strMsg;
	strMsg = '';
						
	if (frmForm.txtName.value == '') {
		strMsg += '\nName';
	}

	if (frmForm.txtEmail.value == '') {
		strMsg += '\nEmail';
	}
				
	if (frmForm.txtSubject.value == '') {
		strMsg += '\nSubject';
	}
			
	if (frmForm.txtMessage.value == '') {
		strMsg += '\nMessage';
	}
	
	if (frmForm.CaptchaBox.value == '') {
		strMsg += '\nVerification';
	}
			
			
	if (strMsg != '') {
		alert('Please fill in the following fields:\n' + strMsg);
		return false;
	} else {
		return true;
	}
}
