function clearForm() {
	document.all.fio.value = "";
	document.all.position.value = "";
	document.all.question.value = "";
	document.all.email.value = "";
}

function submitForm() {
	if(document.all.email.value != "")
	{
		document.forms.contactForm.submit();
		
	}
}
function submitSite() {
	document.forms.partnersform.submit();

}