function window_open(page, name,  wd, hg) {

	window.open(page,name,"toolbar=no,scrollbars=no,resizable=no,width=" + wd + ",height=" + hg + ",top=50,left=200");

}

function show_code(page,name) {

	wd = screen.width - 50;
	hg = screen.height - 100;

	window.open(page,name,"toolbar=no,status=no,scrollbars=1,resizable=1,width=" + wd + ",height=" + hg + ",top=25,left=25");

}



function ToggleMenuObsolete()
{
var ObsoletMenu = document.getElementById ('top_menu_obsolete_div');

expireAt = new Date;
expireAt.setMonth(expireAt.getMonth() + 3);


	if (ObsoletMenu) {
		
		if(ObsoletMenu.style.display == 'none'){
			ObsoletMenu.style.display = 'block';
			HeaderMenuImg.src = '/p/top_menu/menu_off.gif';
			HeaderMenuImg.title = 'сжать меню';
			document.cookie = "menu=yes; path=/; expires=" + expireAt.toGMTString();

		}else{
			ObsoletMenu.style.display = 'none';
			HeaderMenuImg.src = '/p/top_menu/menu_on.gif';
			HeaderMenuImg.title = 'расширить меню';
			document.cookie = "menu=no; path=/; expires=" + expireAt.toGMTString();
		}
		
		//HeaderMenu2.style.display = HeaderMenu2.style.display == 'none' ? 'block' : 'none';
		
	}
}
