function searchclick(text)
{
	if (text.value == "поиск ...")
	{
		text.value = "";
	}
}

function searchblur(text)
{
	if (text.value == "")
	{
		text.value = "поиск ...";
	}
}

function mail(name, domain)
{
	document.location.href = "mailto:" + name + "@" + domain;
}