function launchFull(url, name, height, width) 

{
  var str = "height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width;
  if (window.screen) 
  {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;

    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    str += ",left=" + xc + ",resizable=no,menubar=no,locationbar=no,status=no,scrollbars=yes,screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
  window.open(url, name, str);
}

/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var MENU_ITEMS = [
	['Über uns', null, null,
		['&raquo; Profil', 'index.php?area=ueberuns_profil'],
		['&raquo; Jobs', 'index.php?area=ueberuns_jobs'],
	],
	['Produkte', null,
			['&raquo; Überblick', 'index.php?area=produkte_ueberblick'],
			['&raquo; Highlights', 'index.php?area=produkte_highlights'],
			['&raquo; Module', 'index.php?area=produkte_module',],	
			['&raquo; kappaIC', 'index.php?area=produkte_kappaIC',],	
			['&raquo; kappaIX', 'index.php?area=produkte_kappaIX',],	
			['&raquo; kappaRS', 'index.php?area=produkte_kappaRS',],	
			['&raquo; kappaWF', 'index.php?area=produkte_kappaWF',],	
			['&raquo; kappaBB', 'index.php?area=produkte_kappa_rest',],	
			['&raquo; kappa UMTS', 'index.php?area=produkte_kappa_rest',],	
			['&raquo; kappa DB', 'index.php?area=produkte_kappa_rest',],	
			['&raquo; kappa S', 'index.php?area=produkte_kappa_rest',],	
			['&raquo; Screenshots', 'index.php?area=produkte_screenshots'],	
	],
	/* Platzhalter für Leereintrag Veranstaltungen
	['Veranstaltungen', null, null,
		['&raquo; Termine', 'index.php?area=veranstaltungen_termine_leer'],
	],
	
	['Veranstaltungen', null, null,
		['&raquo; Termine', 'index.php?area=veranstaltungen_termine'],
	],

	['Referenzen', null, null,
		['&raquo; 1', 'index.php?area=referenzen1'],
		['&raquo; 2', 'index.php?area=referenzen2'],
		['&raquo; 3', 'index.php?area=referenzen3'],
		['&raquo; 4', 'index.php?area=referenzen4'],
		['&raquo; 5', 'index.php?area=referenzen5'],
	],
	*/
	
	/*
		['Partner', null, null,
	],
	*/

	['Kontakt', null, null,
		['&raquo; E-Mail Formular', 'index.php?area=kontakt_email'],
	],
	['Support', null, null,
		['&raquo; FAQ', 'index.php?area=support_faq'],
		['&raquo; Downloads', 'index.php?area=support_downloads'],
		['&raquo; Forum', 'index.php?area=support_forum'],
	],
/*
	['News', null, null,
		['&raquo; Aktuell', 'index.php?area=aktuell_aktuell'],
		['&raquo; Archiv', 'index.php?area=news_archiv'],
	],
*/
];

