function ShowHideFrame(gotid)
{
var all_obj = new Array("/kitchen/index.php","/service/index.php","/built_in/index.php","/acc/index.php","/kit_meb/index.php", "/sales/index.php", "/contacts/index.php","/info/index.php" )
/*	// Прячем все меню первого уровня
	for (i=0;i<=7;i++)
	{
		//alert(document.getElementById(temp).id)
	document.getElementById(all_obj[i]).style.display='none'
	}
	*/

	if (gotid.indexOf('index.php') ==-1)
	{
	//alert('каждый щёлчок')
	 showsonframe(gotid)
	}
	else
		{
		//alert('через щёлчок')
		if (document.getElementById(gotid).style.display == 'none') 
			{
			//document.getElementById(gotid).style.display = ''
			showsonframe(gotid)
			}
		else
			{
			document.getElementById(gotid).style.display = 'none'
			} 
		}
	
	

}


function showsonframe(useme)
{
//alert(useme)
//document.getElementById(useme).style.display=''

form1.action = useme
form1.submit()

}

function showmain(useme)
{
//alert(useme)
form1.action = useme
//form1.target=""
form1.submit()

}


function showframe(useme)
{
//alert(useme)
document.getElementById(useme).style.display=''
}


