//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// undefined-Wert setzen
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

var undefined;


//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Frame-Checker
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

if (parent.navigation || parent.zusatznavigation) {

	//alert('frameset');

} else {

	var checkthis = confirm("Möchten Sie die vollständige Darstellung dieser Seite?");

  if (checkthis == true){

      window.location = 'index.php?' + this.location;

  }

}