function chkAll(frm)
{
	for (var x = 0; x < frm.elements.length; x++) if (!frm.elements[x].value && !frm.elements[x].getAttribute("skip"))
	{
		var tmp = frm.elements[x].parentNode;
		if (tmp.tagName == "TD" && tmp.previousSibling)
		{
			tmp = (tmp.previousSibling.textContent ? tmp.previousSibling.textContent : tmp.previousSibling.innerText);
		}
		else
		{
			tmp = (tmp.textContent ? tmp.textContent : tmp.innerText);
		}
		alert("Заполните поле \"" + tmp + "\"");
		frm.elements[x].focus();
		return false;
	}

	return true;
}

function v_minimize()
{
	$("#MapMenu").parent().stop().animate({"height":"77px"},1000);
}
function v_maximize()
{
	$("#MapMenu").parent().stop().animate({"height":"266px"},1000);
}
