<!--

// Alle Attributen des Fensters stehen in 'strAttrib'.
var strAttrib = 'dependent,alwaysRaised,width=797,height=430,screenX=80,screenY=80,top=80,left=80,scrollbars=yes,menubar=0'

var w1;
var w2;

function OpenWindow(strURL)
{

  if(navigator.platform.indexOf('Mac') !=-1)
  if( navigator.appName.indexOf('Microsoft') !=-1 )
  {
   //IE for Mac.
   w1  = window.open(strURL, 'msgWin1',strAttrib);
   w1.focus();
   return;
  }


 if(w1!=null)
 {

  w1.close();
  w1 = null;
  w2  = window.open(strURL, 'msgWin2',strAttrib);

  if( navigator.appName.indexOf('Netscape') !=-1 )
  {
   w2.focus();
   w2 = null;
  }

 }
 else
 {
  if(w2!=null)
  {

   w2.close();
   w2 = null;
  }

  w1 = window.open(strURL, 'msgWin1',strAttrib);

  if( navigator.appName.indexOf('Netscape')!=-1 )
  {
   w1.focus();
   w1 = null;
  }

 }

}


function CloseWindow()
{

  if(w1!=null)
  {

   w1.close();
   w1 = null;
  }

  if(w2!=null)
  {

   w2.close();
   w2 = null;
  }

}

// -->