// JavaScript Document
function fenster(winname,breite,hoehe) {

	if(typeof bilder != 'undefined')
	{	
		if(!bilder.closed)
		{
			bilder.resizeTo(breite,hoehe);
		}
	}
	var links=screen.width/2-breite/2;
	var oben=screen.height/2-hoehe/2;
	bilder = window.open(winname, "bilder", "width="+breite+",height="+hoehe+",top=10,left=10");
	bilder.focus();
}

function gbuch(winname,breite,hoehe) {
	var links=screen.width/2-breite/2;
	var oben=screen.height/2-hoehe/2;
	gbuch = window.open(winname, "gbuch", "width="+breite+",height="+hoehe+",top=10,left=10");
	gbuch.focus();
}

function kontakt(winname,breite,hoehe) {
	var links=screen.width/2-breite/2;
	var oben=screen.height/2-hoehe/2;
	kontakt = window.open(winname, "kontakt", "width="+breite+",height="+hoehe+",top=10,left=10");
	kontakt.focus();
}

function startseite(winname,breite,hoehe) {
	var links=screen.width/2-breite/2;
	var oben=screen.height/2-hoehe/2;
	NewWin = window.open(winname, "fewogn", "width="+breite+",height="+hoehe+",top="+links+",left="+oben+",directories=no,toolbar=no,location=no,menubar=no,scrollbars=no,status=no,resizable=no,dependent=no");
}
