
 // Neues Fenster öffnen

	function open_window(source,width,height)
	{
		newwindow = window.open(source,'POPUP','scrollbars=yes, width='+width+', height='+height);
		newwindow.focus();
	}


 // Impressum als popUp

	function imprint()
	{
		open_window('window.php?filename=imprint.php',400,600);
	}

	function send_form()
	{
		alert();
		document.map24.submit();			
	}