function callform() 
{ 

if(document.getElementById('call_po1').value!='' && document.getElementById('call_po2').value!='' && document.getElementById('call_cap').value==document.getElementById('call_image').value && document.getElementById('call_po3').value!='+7 (495) 123-45-67')
{
	jQuery.ajax({type:'POST',url:'/sendmail/callform_my.php',data:'contact_name='+document.call_form.contact_name.value+'&company='+document.call_form.company.value+'&contact_phone='+document.call_form.contact_phone.value+'&antispam='+document.call_form.email.value+document.call_form.adress.value,success:function(msg){alert('Форма заказа звонка:\n'+msg);}});
								
	jQuery('#call_form').hide();
	document.getElementById('body').style.overflow='visible';
	document.getElementById('hide_id').style.display='none';
}
else {	
	
	if (document.getElementById('call_po3').value == '+7 (495) 1234567'){document.getElementById('call_bg3').style.backgroundImage = 'url(/images/new/form_button_2_a_2x.png)';document.getElementById('call_er3').style.display='block';}
	if (document.getElementById('call_po1').value == ''){document.getElementById('call_bg1').style.backgroundImage = 'url(/images/new/form_button_1_a_2x.png)';document.getElementById('call_er1').style.display='block';}
	if (document.getElementById('call_po2').value == ''){document.getElementById('call_bg2').style.backgroundImage = 'url(/images/new/form_button_3_a_2x.png)';document.getElementById('call_er2').style.display='block';}
	if (document.getElementById('call_cap').value != document.getElementById('call_image').value){document.getElementById('call_cap').style.background='#e94c4c';document.getElementById('call_cap_er').style.display='block';}
}
								
}
function callrefresh() 
{
document.getElementById('call_bg1').style.backgroundImage = 'url(/images/new/form_button_1_2x.png)';
document.getElementById('call_bg2').style.backgroundImage = 'url(/images/new/form_button_3_2x.png)';
document.getElementById('call_bg3').style.backgroundImage = 'url(/images/new/form_button_2_2x.png)';
document.getElementById('call_cap').style.background = '#fff';
document.getElementById('call_er1').style.display='none';
document.getElementById('call_er2').style.display='none';
document.getElementById('call_er3').style.display='none';
document.getElementById('call_cap_er').style.display='none';
document.getElementById('call_po1').value='';
document.getElementById('call_po2').value='';
document.getElementById('call_po3').value='+7 (495) 1234567';
document.getElementById('call_cap').value='';
}
