// JavaScript Document
	var win = null;
	function NewWindow(mypage,myname,w,h,scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/4 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/0 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll 
	win = window.open(mypage,myname,settings)
	if(win.window.focus){win.window.focus();}
}

function fenster(URL) {
	anzeige = open(URL,"Fenster","width=520,height=550,location=no,scrollbars=yes,resizable=no");
	anzeige.focus();	
}

function aktuelles(URL) {
	anzeige = open(URL,"Aktuelles","width=520,height=330,location=no,scrollbars=yes,resizable=no");
	anzeige.focus();	
}

function angebot(URL) {
	anzeige = open(URL,"Impressum","width=520,height=260,location=no,scrollbars=yes,resizable=no");
	anzeige.focus();	
}

function video(URL) {
	anzeige = open(URL,"Video","width=392,height=367,location=no,scrollbars=no,resizable=no");
	anzeige.focus();	
}

function galerie(URL) {
	anzeige = open(URL,"Galerie","width=600,height=650,location=no,scrollbars=no,resizable=no");
	anzeige.focus();	
}

function anfrage(URL) {
	anzeige = open(URL,"Anfrage","width=550,height=470,location=no,scrollbars=yes,resizable=no");
	anzeige.focus();	
}

function impressum(URL) {
	anzeige = open(URL,"Impressum","width=520,height=470,location=no,scrollbars=yes,resizable=no");
	anzeige.focus();	
}

function Wechsel(URL) {
		opener.location.href=URL;
		window.opener.focus();
	}
