

function fenster(d1,d2,d3) {
var pop;
pfad="/"+d1+"/"+d2+".html#"+d3;
if (pop==1) {
	pop.window.close();
  }
pop = window.open(pfad, "popup", "location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no, status=no,left=300,top=200,width=600,height=500,outerHeight=500,outerWidth=600");
pop.window.focus();
}


function beisp(d1) {
var pop;
pfad="beispiel/"+d1;
if (pop==1) {
	pop.window.close();
  }
pop = window.open(pfad, "popup", "location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no, status=no,left=200,top=200,width=520,height=400,outerHeight=400,outerWidth=520");
pop.window.focus();
}

function beisp_kurz(d1) {
var pop;
pfad="beispiel/"+d1+".html";
if (pop==1) {
	pop.window.close();
  }
pop = window.open(pfad, "popup", "location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no, status=no,left=200,top=200,width=520,height=200,outerHeight=200,outerWidth=520");
pop.window.focus();
}

function bild(b) {
var pop;
grafik="images/"+b+".gif";
if (pop==1) {
	pop.window.close();
  }
pop = window.open("", "popup", "location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no, status=no,left=200,top=200,width=660,height=520,outerHeight=520,outerWidth=660");
pop.document.write("<html><head><title>");
pop.document.write("So sieht es aus");
pop.document.write("</title></head><body><p><img src=");
pop.document.write(grafik +" /></p>");
pop.document.write("<p><a href='javascript:window.close();'>Fenster schliessen</a></p></body></html>");
pop.document.close();
pop.window.focus();
}
