function openWindow(adresse) {	
	window.open(adresse, '');  
	return false;  
}

function GaleriePopUp(Bild, Text) {

	var yKoord = screen.width - 617;
	var fenster;

	fenster = window.open("", "Foto", "width=607,height=497,left=" +yKoord+ ",top=0,scrollbars=0,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0");

	if(fenster==null) {
		alert("Die Fotos können nur angezeigt werden, wenn Sie Popups für diese Seite zulassen.");
	} else {
	  fenster.document.open();
		fenster.document.writeln("<\!DOCTYPE HTML PUBLIC \"\-\/\/W3C\/\/DTD HTML 4.01 Transitional\/\/EN\" \"http\:\/\/www.w3.org\/TR\/html4\/loose.dtd\">");
		fenster.document.write("<html><head><title>");
		fenster.document.write("Monika Griefahn Bildergalerie");
	  fenster.document.writeln("<\/title>");
	  fenster.document.writeln("<style type=\"text\/css\">");
	  fenster.document.writeln("\<\!\-\-");
	  fenster.document.writeln("p {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #000000}");
	 	fenster.document.writeln("body { text-align: center; margin:0px; padding:0px} ");
	 	fenster.document.writeln("div { text-align: left; margin:auto; width:567px; padding-top:19px} ");
	  fenster.document.writeln("\-\-\>");
		fenster.document.writeln("<\/style><\/head><body style\=\"background-color\:\#fff;\">");
	  fenster.document.writeln("<div>");
		fenster.document.write('<img src="' + Bild + '" width="567" height="397" alt="');
	  fenster.document.write(Text);
	  fenster.document.writeln('">');
		fenster.document.write("<p>");
	  fenster.document.write("Monika Griefahn mit...");
	  fenster.document.write("<\/p><p>");
	  fenster.document.write(Text);
	  fenster.document.writeln("<\/p><\/div>");
		fenster.document.write("<\/body><\/html>");
		fenster.document.close();
  	fenster.focus();
  }
}