
var i = top.frames.length;
if (i < 3)
{
  var now = window.location.href;
  var menu_id = getQuerystring('menuid');
  var mdoc_id = getQuerystring('mdoc_id');
  if (!mdoc_id)
  {
    mdoc_id = now.match(/([^\/]+).html/);
    mdoc_id = mdoc_id[1];
	}
	then = 'http://www.oeamtc.at/a'+mdoc_id+'/'+menu_id;
	
	//alert(then);
    
	//Folgende Zeile entkommentieren, um Weiterleitung aufs Frameset zu aktivieren:
	if (now.indexOf('www.oeamtc.at') >= 0)  window.setTimeout('top.location.replace(then, "_top")', 300);
}

function getQuerystring(key, default_)
{
  if (default_==null) default_="";
  key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regex = new RegExp("[\\?&]"+key+"=([^&#]*)");
  var qs = regex.exec(window.location.href);
  if(qs == null)
    return default_;
  else
    return qs[1];
}