function fnFormContactUsCheck(oForm) {
	sAlert = 'Alle gule felter skal udfyldes'
	if (oForm.frmNameCompany1.value == '') {
		alert(sAlert)
		oForm.frmNameCompany1.focus()
		return false
	}
	if (oForm.frmEmail.value == '') {
		alert(sAlert)
		oForm.frmEmail.focus()
		return false
	}
	if (!fnEmailValidate(oForm.frmEmail.value)) {
		oForm.frmEmail.focus()
		return false
	}
	if (oForm.frmMessage.value == '') {
		alert(sAlert)
		oForm.frmMessage.focus()
		return false
	}
	oForm.xfrmSubmit.disabled = true
}
