function news_column()
{
	minWid=760+220;
	tecWid=window.innerWidth;
	if (tecWid='undefined')
	{
		tecWid=document.body.offsetWidth-20;
	}
	if (tecWid<minWid)
	{
		// недостаточно места для отображения
		ok=0;
	}
	else
	{
		// достаточно места для отображения
		ok=1;
	}
//	prompt ( minWid + '!' + ok + '!' + window.innerWidth + '!' + document.body.offsetWidth+ '=' + tecWid);	

	
	
		if (document.all) 
		{
			if (ok==1)
			{		
				document.all("news_content").innerHTML = document.all("newsik").innerHTML;
				document.all("search_content").innerHTML = document.all("search").innerHTML;
			}
			else
			{
				document.all("news_content").innerHTML = "";
				document.all("search_content").innerHTML = "";
			}
		}
		else
		{
			if (ok==1)
			{
				document.getElementById("news_content").innerHTML = document.getElementById("newsik").innerHTML;
				document.getElementById("search_content").innerHTML = document.getElementById("search").innerHTML;
			}
			else
			{
				document.getElementById("news_content").innerHTML = "";
				document.getElementById("search_content").innerHTML = "";	
			}
		}	

}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
