/* Window für Mitteilungen - Mailinglisten, etc. ------------------------------------*/

function infowin (URL) {
	var win;
	win = window.open(URL,'Info','width=720,height=530,resizable=no,scrollbars=yes,menubar=yes');
	}

function listwin (URL) {
	var win;
	win = window.open(URL,'List','width=700,height=400,resizable=no,scrollbars=yes,menubar=yes');
	}

function otherwin (URL) {
	var win;
	win = window.open(URL,'Other','width=800,height=500,resizable=yes,scrollbars=yes');
	}

function closewin (URL) {	
	location.href=URL;	
	}

function Verweis(Ziel)
  {
	window.close();   	
   	window.focus();
	window.location.href = Ziel;
	
  }
