function ShowCalendar(name, dt)
{
	document.write("sergey");
}

function check_search(val, search)
{
	if (val==search+'...') return false;
	if (val.replace(/ /gi,'')=='') return false;
	return true;
}

function changeLang(val)
{
	str=window.location.href;
	str=str.replace(/lang=az/, "lang="+val);
	str=str.replace(/lang=en/, "lang="+val);
	str=str.replace(/lang=ru/, "lang="+val);
	if (str!=window.location.href)
	{
		window.location.href=str;
		return false;
	} else {
		return true;	
	}
}