function todo(){
  
  return;
}

	
	

function restore()
{

}

function swap(name, pic)
{

}

function open_window(u, n, o, w, h)
{
  if(!h){
	  if(!window.screen){
	    h = 572, w = 800;	
	  }
	  else{
	    h = screen.availHeight, w = screen.availWidth; 
	  }
	}
	 	 
  o += ",height=" + h + ",width=" + w;
	window.open(u, n, o);
}

function augment(a, b){
  if(!document.getElementById){
		 return;
	}	 
  if((sv = location.search) != 0){
     if(document.getElementById(a))
		    document.getElementById(a).href += sv;
     if(document.getElementById(b))
		    document.getElementById(b).href += sv;
  }
}	

function gehe_zu() {
 for(i=2;i<document.leiste.auswahl.length;++i)
  if(document.leiste.auswahl.options[i].selected == true){
   location.hash = document.leiste.auswahl.options[i].value;
  }
}

function get_cookie(key)
{
  var cookie_start, cookie_end, wert = "";  
	cookie_start = document.cookie.indexOf(key) + key.length + 1;
	if(cookie_start == -1)
	   return 0;
	
	cookie_end = document.cookie.indexOf(";", cookie_start);
	if(cookie_end == -1) cookie_end = document.cookie.length;
	wert = document.cookie.substring(cookie_start, cookie_end);
	return parseInt(wert);
}

if(top.location != self.location) top.location = self.location;

if((top.location.hostname != "www.erloesergemeinde-moabit.de") &&
   (top.location.hostname != "erloeser"))
   top.location.href = "http://www.erloesergemeinde-moabit.de/";