
function Collapse(id)
{
	if(document.getElementById(id).style.display == "")
	{
		document.getElementById(id).style.display = "none";
		document.cookie= "cookie_" + id + "=none; path=/; expires=Mon, 01-Jan-2100 00:00:00 GMT";
	}
	else
	{
		document.getElementById(id).style.display = "";
		document.cookie= "cookie_" + id + "=; path=/; expires=Mon, 01-Jan-2100 00:00:00 GMT";
	}
}

function Del(url)
{
	if(confirm('Вы действительно хотите удалить?'))
	parent.location = url;
}

function Preview(id)
{
	document.getElementById(id).action = document.getElementById(id).action + "&pa=preview";
}

function PopupHelp()
{
	popupWin = window.open("/help/bb.html", null, "location,width=600,height=500,top=1,toolbar=no, scrollbars=yes");
	popupWin.focus(); // передаём фокус новому окну
}
function PopupExprHelp()
{
	popupWin = window.open("/help/expr.html", null, "location,width=600,height=500,top=1,toolbar=no, scrollbars=yes");
	popupWin.focus(); // передаём фокус новому окну
}

function OnMouseOverTopButton(id)
{
	//background: #000 url('./images/stars.jpg')
	document.getElementById("topbutton_"+id+"_left").style.backgroundImage = "url('/images/button/11.gif')";
	document.getElementById("topbutton_"+id+"_center").style.backgroundImage = "url('/images/button/22.gif')";
	document.getElementById("topbutton_"+id+"_right").style.backgroundImage = "url('/images/button/33.gif')";
	document.getElementById("topbutton_"+id+"_center").style.color = "#FFF";
	//onmouseover=\"this.style.background = '#3A3A3A';\" onmouseout=\"this.style.background = 'none';\"
}
function OnMouseOutTopButton(id)
{
	document.getElementById("topbutton_"+id+"_left").style.backgroundImage = "url('/images/button/1.gif')";
	document.getElementById("topbutton_"+id+"_center").style.backgroundImage = "url('/images/button/2.gif')";
	document.getElementById("topbutton_"+id+"_right").style.backgroundImage = "url('/images/button/3.gif')";
	document.getElementById("topbutton_"+id+"_center").style.color = "#CCF";
}
//window.location = "http://www.1.ru/";

