function show(id) {
	document.getElementById(id).style.display='block';
}

function hide(id) {
	document.getElementById(id).style.display='none';
}

function loadCallWindow() {
	var number = document.getElementById('phoneNumber').value;
	if (number.length == 10) {
		window.open('http://94.158.82.3/test/700.php/8' + number,'DescriptiveWindowName','left='+Math.round((screen.width-400)/2)+',top='+Math.round((screen.height-100)/2)+',height=100,width=400');
	} else {
		alert('Вы ввели некорректный номер телефона. Номер должен состоять из 10 цифр.');
	}
	return false;
}
