function toggleMenu(menuID)
{
	var menu = document.getElementById(menuID);
	if (menu.style.display != 'block')
	{
		menu.style.display = 'block';
	}
	else
	{
		menu.style.display = 'none';
	}
}

function openWindow(url, w, h)
{
	window.open('http://natascreens.ru/show.php?w=' + w + '&h=' + h + '&url=' + escape(url), '_blank', 'width=' + w + ',height=' + h + ',resizable=0,scrollbar=0,toolbar=0,status=0,location=0,menubar=0');
}