// 
//****************************************
// Menueverwaltung Fenster (frameset - global)

function GoGlobal(x)
{if(x == "nothing")
  {return;
  }
 else
  {parent.location.href = x;
  }
}

function set_gmenue_to(m)
	{document.gauswahl.gmenuepunkte.selectedIndex=m;
	}

function gload_me(url)
	{parent.location.href=url;
	 set_gmenue_to(0);
	}
	
// 
//****************************************
// Menueverwaltung Framset (frame - frame)


function winFocusF()
 	{if(parseInt(navigator.appVersion) >= 3.0)
	 	parent.FInhalt.focus();
	}
   
function GoFrame(x)
{if(x == "nothing")
  {return;
  }
 else
  {parent.FInhalt.location.href = x;
  winFocusF();
  }
}
	
function set_fmenue_to(m)
	{document.fauswahl.fmenuepunkte.selectedIndex=m;
	}

function fload_me(url)
	{parent.FInhalt.location.href=url;
	 set_fmenue_to(0);
	}
	
// 
//****************************************
//
