<!--
function checkForm() {
  var formArray = Array("name","email","phone","address","message");
  var idArray = Array("UserName","UserEmail","UserPhone","UserAddress","UserMessage");
  var valueArray = Array("","","","","");
  for(var i = 0;i<formArray.length;i++){
	  if (document.getElementById(idArray[i]).value == formArray[i]||document.getElementById(idArray[i]).value == valueArray[i]) {
		document.getElementById(idArray[i]).style["background"] = "#FFAEAE";
		document.getElementById(idArray[i]).style["border"] = "2px solid red";
		document.getElementById(idArray[i]).style["padding"] = "1px";
		document.getElementById(idArray[i]+"_error").style["display"] = "inline";
		document.getElementById(idArray[i]+"_error").style["border"] = "0px solid red";
		document.getElementById(idArray[i]+"_error").style["margin-top"] = "10px";
		document.getElementById(idArray[i]+"_error").style["line-height"] = "300%";
		document.getElementById(idArray[i]+"_error").style["background"] = "white";
		document.getElementById(idArray[i]).value = formArray[i];
	  }else{
		document.getElementById(idArray[i]).style["background"] = "white";
		document.getElementById(idArray[i]+"_error").style["display"] = "none";
		//document.getElementById(formArray[i]).style["border"] = "1px solid #404040";
		document.getElementById(idArray[i]).style["border"] = "1px inset"; 
	  }
	}
	var counter = 0
	for(var i = 0;i<idArray.length;i++){
		if (document.getElementById(idArray[i]).value != formArray[i]) {
		  counter++
		}
		if(counter==idArray.length){
			//alert("Thank you for your email enquiry.\nYour message has been sent and we will\nbe contacting you in the next 24 hours")
			document.miniform.command.value = "SendMail";
			//document.frmMain.department.value = document.getElementById("SelectOne").value;
			document.miniform.submit();
		}
  	}

  }
//-->
