function popup(src,width,height,title) 
	{	
		LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
		var html = "<!-- doctype --><!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'	'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html lang='en' xmlns='http://www.w3.org/1999/xhtml'><!-- head --><head><title>" + title + "</title><!-- meta-info --><meta http-equiv='Content-Type' content='text/html; charset=windows-1252' /><meta http-equiv='imagetoolbar' content='no' /><!-- favicon --><link rel='icon' type='image/ico' href='http://www.latourmaubourg.com/favicon.ico' /></head><!-- body --><body onblur='self.close();' style='margin: 0px; padding: 0px; background-image='http://hotelvaladon.com/images/" + src + ".grand.jpg';'><img src='http://hotelvaladon.com/images/" + src + ".grand.jpg' alt='" + title + "' title='" + title + "' width='" + width + "' height='" + height + "' onclick='self.close();'/></body></html>"	
		popupfenster = open("", "", "width=" + width + ",height=" + height + ",top=" + TopPosition + ",left=" + LeftPosition);	
		inhalt = popupfenster.document;
		inhalt.open();
		inhalt.write(html);
		inhalt.close();
		popupfenster.focus();
	}

