//****************************************************************************************************************
// load pdf in popup or _self
//****************************************************************************************************************
function OpenPDF(cUrl)
{
  // open new window;
  cMessage = confirm('PDF-Datei in Extra-Fenster anzeigen?');

  if (cMessage)
  {
    cWindow = window.open(cUrl,"ibtpdf","width=480,height=600,status=no,scrollbars=yes,resizable=yes,screenX=20,screenY=20,left=20,top=20");
    // bring window to top
    if( !cWindow.opener )
    {
      cWindow.opener = self;
    }

    if( cWindow.focus != null )
    {
      cWindow.focus();
    }
  }
  else
  {
    cWindow = window.open(cUrl,"_self","status=no,scrollbars=yes,resizable=yes");
  }
}

function OpenWIN(cUrl)
{
  // open new window;
  cMessage = confirm('Datei in Extra-Fenster anzeigen?');

  if (cMessage)
  {
    cWindow = window.open(cUrl,"ibtwin","width=480,height=600,status=yes,scrollbars=yes,resizable=yes,screenX=0,screenY=0,left=0,top=0,menubar=yes,toolbar=yes");
    // bring window to top
    if( !cWindow.opener )
    {
      cWindow.opener = self;
    }

    if( cWindow.focus != null )
    {
      cWindow.focus();
    }
  }
  else
  {
    cWindow = window.open(cUrl,"_self","status=no,scrollbars=yes,resizable=yes");
  }
}

function Fenstername () {
  fenstername = window.name;
  namelaenge =  window.name.length;
  alert("Name des Fensters: " + fenstername + " " + namelaenge);
}


