function supportFormValidation()
{
	
	var bCorrect = true;
	var iCustomerId="";
	var iTelephone="";
	var strName="";
	var strPatientname="";
	var iDateDictation="";
	
	iCustomerId =document.frmSendSupportMail.txtCustomerId.value;
	iTelephone = document.frmSendSupportMail.txtTelephone.value;
	strName = document.frmSendSupportMail.txtName.value;
	strPatientname =document.frmSendSupportMail.txtPatientname.value;
	iDateDictation = document.frmSendSupportMail.txtDateDictation.value;
	if((iCustomerId=="") || (iTelephone=="") || (strName=="") || (strPatientname=="") ||(iDateDictation==""))
	{
		alert("Please make sure all required fields are completely filled out");
		bCorrect=false;
	}
	return bCorrect;
}
	
