// JScript File


function tree_node(node, imd_expanded, img_collapsed) 
{
	if (node.nextSibling.nextSibling.style.display == 'none') {
		if (node.hasChildNodes)	{
			if (node.firstChild.tagName == "IMG") {
				node.firstChild.src = imd_expanded;
				node.firstChild.alt = "свернуть";
			}
		}
		node.nextSibling.nextSibling.style.display = 'block';
	} else {
		if (node.hasChildNodes)	{
			if (node.firstChild.tagName == "IMG") {
				node.firstChild.src = img_collapsed;
				node.firstChild.alt = "развернуть";
			}
		}
		node.nextSibling.nextSibling.style.display = 'none';
	}
}

function show_img(wnd, url) 
{
		wnd = window.open(url, 0, "resizable=yes,scrollbars=yes,width=800,height=600,top=50,left=50");
} 

function goto_wmpay() 
{
	var amObj = document.getElementById('WMAmount');
	wnd = window.open("WMpay.aspx?amount=" + amObj.value, "_blank", "resizable=yes,scrollbars=yes,width=750,height=550,top=50,left=50");
	return false;
}
