function LoadFrame ()
{
  var loc = "../../index.html";
  if (top.frames.length < 2 )
  {
    top.location.href = loc;
  }
}

function menu_execLink(s, extern) 
{
	var m_basePath = "index.php";
	
	if (s==-1) return;
		
	if (extern) 
	{
		window.open(s,"_blank");
	}
	else 
	{
		location.href = m_basePath+"?s="+s;
	}	
}

var f=0; c=1; t=""

function ShowVersion () 
{
	if (c>3) return;

	if (c==1) t="aktuelle"
	if (c==2) t="aktuelle Version"
	if (c==3) t="aktuelle Version 3.3.0"
	
	c++;
	
	document.getElementById("Version").firstChild.nodeValue = t;

  window.setTimeout("ShowVersion()", 1000);
}




