<!--
var popup_window = null;

function popup(status,url,x,y,z) 
{
  if(status != 0) 
  { if(popup != null) popup.focus();
    else 
    { 
      wert = "width = " + x + ", height = " + y + ", scrollbars = " + z ;
      var popup = open(url, "popup",wert);
      popup_window = popup ;
    } 
  } 
  else 
  { 
    if(popup_window != null) popup_window.close(); 
  } 
} 

function popupscroll(status,url,x,y,z) 
{
  if(status != 0) 
  { if(popup != null) popup.focus();
    else 
    { 
      wert = "width = " + x + ", height = " + y + ",resizable=yes, scrollbars = " + z ;
      var popup = open(url, "popup",wert);
      popup_window = popup ;
    } 
  } 
  else 
  { 
    if(popup_window != null) popup_window.close(); 
  } 
} 



function InfoFenster(adresse,breite,hoehe)
	{
		if(msgWindow!=null)msgWindow.close();
		var Fenstereigenschaften="width="+breite+",height="+hoehe+",toolbar=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no,directories=no,location=no"
		msgWindow=window.open(adresse,"_blank",Fenstereigenschaften)
		msgWindow.focus();
	}


//-->