var win=null;



window.onerror = nixmachen;
function nixmachen() {
	return true;
}



function bilder(album){
	settings="width=600,height=500,top=100,left=100,scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,dependent=no";
	win=window.open("album/"+album+"/bilder.html","",settings);
	win.focus();
}



function auswahl (select){
  var wert = select.options[select.options.selectedIndex].value;
  if (wert == "leer") {
    select.form.reset();
    top.window.focus();
    return;
  } else {
    if (wert == "ende") {
      select.form.reset();
      top.window.focus();
    } else {
      win=window.open(wert);
      select.form.reset();
      win.focus();
    }
  }
}



function weihnacht(){
	settings="width=620,height=900,top=20,left=100,scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,dependent=no";
	win=window.open("images/weihnacht2009.jpg","",settings);
	win.focus();
}