function bild(name,h,w)
{
	var fenster;
	var x,y;
	fenster=window.open("../bilder_gross/"+name+".html","","height="+h+",width="+w+",menubar=no,locationbar=no,status=no");
	fenster.focus();
	if(navigator.appName=="Microsoft Internet Explorer")
		 {
		 fenster.resizeTo(w,h);
		 x=(screen.width-w)/2;
		 y=(screen.height-h)/2;
		 }
		 else
		 {
		 x=(screen.width-fenster.outerWidth)/2;
		 y=(screen.height-fenster.outerHeight)/2;
		 }
	fenster.moveTo(x,y);
}

function popup(name,h,w)
{
	var fenster;
	var x,y;
	fenster=window.open(name,"","height="+h+",width="+w+",menubar=no,locationbar=no,status=no,scrollbars=yes");
	fenster.focus();
	if(navigator.appName=="Microsoft Internet Explorer")
		 {
		 fenster.resizeTo(w,h);
		 x=(screen.width-w)/2;
		 y=(screen.height-h)/2;
		 }
		 else
		 {
		 x=(screen.width-fenster.outerWidth)/2;
		 y=(screen.height-fenster.outerHeight)/2;
		 }
	fenster.moveTo(x,y);
}

function text_ausgabe()
{
	var meldung;
	meldung = "Herzlich Willkommen beim Weingut Müller-Kern - Ferienwohnungen am Hambacher Schloßberg";
	window.status = meldung;
}


function weiter()
{
	location.href="index2.html";
}


