var myvar;
function menuinit() {
        document.getElementById('m1').style.display = 'none';
        document.getElementById('m2').style.display = 'none';
		        document.getElementById('m3').style.display = 'none';
	document.getElementById('pm1').src = 'java/plus.gif';
	document.getElementById('pm2').src = 'java/plus.gif';
		document.getElementById('pm3').src = 'java/plus.gif';

}
function menuexpand (i) {
        menuinit();
        if (myvar == i) {
		document.getElementById('p' + i).src = 'java/plus.gif';
		document.getElementById(i).style.display = 'none';
		myvar = '';
	}
        else {
		document.getElementById('p' + i).src = 'java/minus.gif';
		document.getElementById(i).style.display = 'block';
		myvar = i;
	}
}

function openWin(img,width,height) {
  winId = window.open('','newwin','width=' + width +',height=' + height +'');
  winId.document.write('<head><title>Bestattung- und &Uuml;berf&uuml;hrungsinstitut Flammersberger - Bestattungen, Beerdigungen in W&uuml;rzburg, Giebelstadt, Kirchheim, Gaub&uuml;ttelbrunn, Unterfranken</title><META HTTP-EQUIV="imagetoolbar" CONTENT="no"><style>a {font-face: arial; text-decoration: none;color: #000000;}a:hover {font-face: arial; text-decoration: underline;}</style>');
  winId.document.write('<body onLoad="if (window.focus) window.focus()"><center>');
  winId.document.write('<img src="' + img + '" alt=Foto>');
  winId.document.write('</center><br><center><a href="#" onClick="window.close()" style="font:9pt arial;">[x] Fenster schließen</a></a></body>');
  winId.document.close();
}