//Fenster öffnen
function FensterOeffnen (Adresse) {
  Fenster1 = window.open(Adresse, "AGBs", "width=615,height=600,left=100,top=200,scrollbars=yes");
  Fenster1.focus();
}
function AGBOeffnen(htmldatei) { 
var undefined; 


  bildpopnw = window.open("","AGBs",'resizable=1,width=615,height=600,left=100,top=200,scrollbars=yes'); 

  with (bildpopnw) { 
    focus(); 
    document.open();
  /*  document.all.black.innerHTML = '<html><head><title>AGBs</title>'; */
  document.writeln('<meta http-equiv=\"content-type\" content=\"text/html;charset=iso-8859-1\">'); 
   document.writeln('<link rel=\"stylesheet\" type=\"text/css\" href=\"/include/style.css\">');
		document.writeln('<!--[if lte IE 7]><style type=\"text/css\">@import \"/include/style_ie.css\" ;</style><![endif]--></head>');
	 document.writeln('<body leftmargin=\"10\" topmargin=\"10\" marginwidth=\"0\" marginheight=\"0\">'); 
   document.writeln('<a href=\"javascript:self.close()\"><a>'); 
   document.location.href=htmldatei;
   document.writeln('</body></html>');
   document.close(); 
  } 
} 
