<!--
 function HInfoPopup(b,h,url)
 {
  var help = "width="+b+",height="+h+",toolbar=no,title=xxx,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes,left=20,top=20,dependent=yes";
  win1 = window.open(url,"W1", help);
  win1.focus(); 
 }
 
  function HWindow(b,h,url)
 {
  var help = "width="+b+",height="+h+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=yes,left=20,top=20,dependent=yes";
  win2 = window.open(url,"W1", help);
  win2.focus(); 
 }
 
function  H_Popup(b,h,url)
{
 var oPopup = window.createPopup();


var oPopupBody = oPopup.document.body;
oPopupBody.style.border = "1px black solid"
oPopupBody.innerHTML = url
oPopup.show(10, 10,b,h)


}
 
 
 
 function WKWindow(b,h,url)
 {
  var help = "width="+b+",height="+h+",toolbar=no,title=xxx,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=no,left=20,top=20,dependent=yes";
  winwk = window.open(url,"W1", help);
  winwk.focus(); 
 }
 
 function InfoFenster(url)
 {
  var eigenschaften = "width=860,height=600,toolbar=no,title=Info,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=no,left=20,top=20,dependent=yes";
  winInfo = window.open(url,"winfo", eigenschaften);
  winInfo.focus(); 
 }
 
 
  function HNewWindow(name,b,h,url)
 {
  var help = "width="+b+",height="+h+",toolbar=no,title=xxx,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no,left=20,top=20,dependent=yes";
  win2 = window.open(url,name,help);
  win2.focus(); 
 }
 
  function HScrollWindow(name,b,h,url)
 {
  var help = "width="+b+",height="+h+",toolbar=no,title=xxx,location=no,directories=no,status=no,menubar=no,scrollbars,copyhistory=no,resizable=no,left=20,top=20,dependent=yes";
  win2 = window.open(url,name,help);
  win2.focus(); 
 }

 function HWinConfig(url) 
 {
  var help = "width=550,height=710,toolbar=no,title=Config,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no,left=20,top=20,dependent=yes";
  WinC = window.open(url,"W2", help);
  WinC.focus();
 }

 function HUploadPopup(b,h,url) {
 var help = "width="+b+",height="+h+",toolbar=no,title=xxx,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no,left=20,top=20,dependent=yes";
 img  = window.open(url,"W3", help);
 img.focus();}

 function HEditPopup(url) {
 var help = "width=650,height=630,toolbar=no,title=Edit,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no,left=20,top=20,dependent=yes";
 edi  = window.open(url,"W4",help);
 edi.focus();}

 function HUploadImage(url) {
 var help = "width=505,height=485,toolbar=no,title=xxx,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no,left=20,top=20,dependent=yes";
 img  = window.open(url,"W5", help);
 img.focus();}

function HInitBrowser()
{
 edi.close();
 alert('alles OK');
}

function popupAOD(url)
	{
		openPopup(url,'AOD',656,430,0);
	}
	
	function openPopup(url,name,w,h,scroll) 
	{
		var popup = null;
		t = (screen.height) ? (screen.height-h)/2 : 0;
		l = (screen.width) ? (screen.width-w)/2 : 0;
		settings = 'height='+h+',width='+w+',top='+t+',left='+l+', scrollbars='+scroll+', resizable=no, dependet=yes, waysRaised=yes';
		popup = window.open(url,name,settings);
		
		popup.focus();
		
	}
	
function HWinEdit(url) 
 {
  var help = "width=550,height=590,toolbar=no,title=Config,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no,left=30,top=95";
  WinC = window.open(url,"Edit", help);
  WinC.focus();
    }	
  
function HPopup(url,name,w,h,scroll) 
{
 var popup = null;
 t = (screen.height) ? (screen.height-h)/2 : 0;
 l = (screen.width) ? (screen.width-w)/2 : 0;
settings = 'height='+h+',width='+w+',top='+t+',left='+l+', scrollbars='+scroll+', resizable=yes, dependet=yes';
 ppup = window.open(url,name,settings);
 ppup.focus(); 
 
}

function wahl(target) {
	 
 var wert = document.form.Auswahl.options[document.form.Auswahl.selectedIndex].value; 
 
 if ( wert.substr(0,9) == 'index.php') target='_self';
 
 if ( wert != "Auswahl" && wert != "" ) 
 {
 ppup = window.open(wert,target);
 ppup.focus();
 }

}
  
  
  

//-->

