function registerWindow( id ) {
	if( id == "" && isNaN( id ) ) return;
	id = parseInt( id );
	url = "register.php?id=" + id;
	
	window.open( url,
				"Anmeldung",
				"height=550," + 
				"width=500," +
				"location=no," + 
				"menubar=no," + 
				"resizeable=no," +
				"status=yes," + 
				"toolbar=no," +
				"top=100," + 
				"left=260" );
				
}

function map24Window( id ) {
	if( id == "" && isNaN( id ) ) return;
	id = parseInt( id );
	url = "router.php?id=" + id;
	
	window.open( url,
				"Anfahrtsbeschreibung",
				"height=241," + 
				"width=200," +
				"location=no," + 
				"menubar=no," + 
				"resizeable=no," +
				"status=yes," + 
				"toolbar=yes," +
				"top=100," + 
				"left=260" );
}

function galleryWindow( src ) {
	url = "lib/phpThumb/phpThumb.php?src=" + src;
	
	img = new Image();
	img.src = src;
	
	
	window.open( url,
				"Gallerie",
				"height=" + img.height + "," + 
				"width=" + img.width + "," +
				"location=no," + 
				"menubar=no," + 
				"resizeable=yes," +
				"status=yes," + 
				"toolbar=no," +
				"top=100," + 
				"left=260" );
}