function submitForm() {
	frm = document.contactForm;
	var text;
	var colorErr = '#F75910';
	var msg = document.getElementById('alert');
	var ok = true;

	text = document.getElementById("companycontact").firstChild.nodeValue;
	if (! checkEmptyFocus(frm.contact_company)){
		text = document.getElementById("companycontact").firstChild.nodeValue;
		document.getElementById('companycontact').style.color= colorErr;
		if(text.charAt(0) != '*')
			document.getElementById("companycontact").firstChild.nodeValue = '*' + text;
		msg.style.display = "block";
		ok = false;
	}else{
		if(text.charAt(0) == '*') document.getElementById("companycontact").firstChild.nodeValue = text.substring(1);
		document.getElementById('companycontact').style.color="#5E5F60";
	}

	text = document.getElementById("name").firstChild.nodeValue;
	if (! checkEmptyFocus(frm.contact_name)){
		document.getElementById('name').style.color= colorErr;
		text = document.getElementById("name").firstChild.nodeValue;
		if(text.charAt(0) != '*')
			document.getElementById("name").firstChild.nodeValue = '*' + text;
		msg.style.display = "block";
		ok = false;
	}else{
		if(text.charAt(0) == '*') document.getElementById("name").firstChild.nodeValue = text.substring(1);
		document.getElementById('name').style.color="#5E5F60";
	}
	
	text = document.getElementById("lastname").firstChild.nodeValue;
	if (! checkEmptyFocus(frm.contact_lastname)){
		document.getElementById('lastname').style.color= colorErr;
		text = document.getElementById("lastname").firstChild.nodeValue;
		if(text.charAt(0) != '*')
			document.getElementById("lastname").firstChild.nodeValue = '*' + text;
		msg.style.display = "block";
		ok = false;
	}else{
		if(text.charAt(0) == '*') document.getElementById("lastname").firstChild.nodeValue = text.substring(1);
		document.getElementById('lastname').style.color="#5E5F60";
	}

	text = document.getElementById("phone").firstChild.nodeValue;
	if (! checkEmptyFocus(frm.contact_phone) || !IsNumeric(frm.contact_phone.value)){
		document.getElementById('phone').style.color= colorErr;
		text = document.getElementById("phone").firstChild.nodeValue;
		if(text.charAt(0) != '*')
			document.getElementById("phone").firstChild.nodeValue = '*' + text;
		msg.style.display = "block";
		ok = false;
	}else{
		if(text.charAt(0) == '*') document.getElementById("phone").firstChild.nodeValue = text.substring(1);
		document.getElementById('phone').style.color="#5E5F60";
	}

	text = document.getElementById("emailcontact").firstChild.nodeValue;
	if (! checkEmptyFocus(frm.contact_email)){
		document.getElementById('emailcontact').style.color= colorErr;
		text = document.getElementById("emailcontact").firstChild.nodeValue;
		if(text.charAt(0) != '*')
			document.getElementById("emailcontact").firstChild.nodeValue = '*' + text;
		msg.style.display = "block";
		ok = false;
	}else{
		if(text.charAt(0) == '*') document.getElementById("emailcontact").firstChild.nodeValue = text.substring(1);
		document.getElementById('emailcontact').style.color="#5E5F60";
	}

	text = document.getElementById("message").firstChild.nodeValue;
	if (! checkEmptyFocus(frm.contact_message)){
		document.getElementById('message').style.color= colorErr;
		text = document.getElementById("message").firstChild.nodeValue;
		if(text.charAt(0) != '*')
			document.getElementById("message").firstChild.nodeValue = '*' + text;
		msg.style.display = "block";
		ok = false;
	}else{
		if(text.charAt(0) == '*') document.getElementById("message").firstChild.nodeValue = text.substring(1);
		document.getElementById('message').style.color="#5E5F60";
	}

	text = document.getElementById("security").firstChild.nodeValue;
	if (! checkEmptyFocus(frm.security_code)){
		document.getElementById('security').style.color= colorErr;
		text = document.getElementById("security").firstChild.nodeValue;
		if(text.charAt(0) != '*')
			document.getElementById("security").firstChild.nodeValue = '*' + text;
		msg.style.display = "block";
		ok = false;
	}else{
		if(text.charAt(0) == '*') document.getElementById("security").firstChild.nodeValue = text.substring(1);
		document.getElementById('security').style.color="#5E5F60";
	}

	text = document.getElementById("emailcontact").firstChild.nodeValue;
	if (! isEmail(frm.contact_email.value, 200, true) && ok) {
		frm.contact_email.focus();
		document.getElementById('emailcontact').style.color= colorErr;
		text = document.getElementById("emailcontact").firstChild.nodeValue;
		if(text.charAt(0) != '*')
			document.getElementById("emailcontact").firstChild.nodeValue = '*' + text;
		msg.style.display = "block";
		//document.getElementById("alertemail").style.display = "block";
		ok = false;
	}else{
		//document.getElementById("alertemail").style.display = "none";
	}

	if(ok)
		document.contactForm.submit();
}