function contactForm_onsubmit()
{
	with(document.sendObject) {
		if(
			isBlankText(name.value)
			&& isBlankText(company.value)
			) {
			alert("Please provide us with your name or company");
			name.focus();
			return false;
		}
		if(
			isBlankText(email.value)
			&& isBlankText(phone.value)
			) {
			alert("Please provide us with your email or phone number");
			email.focus();
			return false;
		}
		if(
			isBlankText(request.value)
			) {
			alert("Please fill the request field");
			request.focus();
			return false;
		}
			
		return true;
	}
}

function writecontactemail()
{
	document.write("<a href=\"mailto:contact@12silence.com\">contact@12silence.com</a>");
}