// JavaScript Document

	function openwindow(id) {		
			
			URL='/function/events_drucken.php?id='+id;
		
		popup=window.open(URL,"", "width=600,height=1400,toolbar=no,scrollbars=yes,status=no,top=50,left=50");
		}
		
	function openwindowP(id) {		
			
			URL='/function/pnews_drucken.php?id='+id;
		
		popup=window.open(URL,"", "width=600,height=1400,toolbar=no,scrollbars=yes,status=no,top=50,left=50");
		}
		
	function openwindowN(id) {		
			
			URL='/function/news_drucken.php?id='+id;
		
		popup=window.open(URL,"", "width=600,height=1400,toolbar=no,scrollbars=yes,status=no,top=50,left=50");
		}
		
	function neuesFenster(meineSeite,meinName,w,h,scroll){
		LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
		settings =
		'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable';
		Fenster = window.open(meineSeite,meinName,settings);
	}
		