function popup_image(img_url, width, height) {
	var timeout = 10;
	var windowprops = "left=200,top=100,width=" + (width + 50) + ",height=" + (height + 70);
		
	var text  = "<html><head><title>Hotel Luisenh&ouml;he</title></head>";
	text += "<body style='color: #365636; background-color: #E7F4E5; font-family: Verdana,Arial,sans-serif; font-size: 11pt;' ";
		
	if (timeout != 0) 
		text += " onLoad=\"setTimeout('window.close()', " + timeout * 1000 + ");\"";
		
	text += "><center><img src='" + img_url + "' alt=''>";
		
	if (timeout != 0) 
		text += "<p>Fenster schlie&szlig;t nach " + timeout + " Sekunden.</p>";
		
	text += "</center></body></html>";
		
	preview = window.open("", "preview", windowprops);	
	preview.document.open();	
	preview.document.write(text);	
	preview.document.close();
}