//var imageWindow;
function imagePopUp(strImageSrc, imageWidth, imageHeight) {
	var strPageContent =	 "<?xml version='1.0'?>\n"
				+"<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'\n"
				+"'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>\n"
				+"<html xmlns='http://www.w3.org/1999/xhtml'>\n"
				+"<head>\n"
				+"<meta http-equiv='content-type' content='text/html; charset=ISO-8859-1' />\n"
				+"<title>Ferienwohnung der Familie Osten - Bildansicht</title>\n"
				+"<link rel='stylesheet' type='text/css' href='res/master.css' />"
				+"</head>\n"
				+"<body>\n"
				+"<table cellspacing='0' cellpadding='0' border='0'>\n"
				+"<tr>\n"
				+"<td><a href='javascript:self.close()'><img src='"+strImageSrc+"' width='"+imageWidth+"' height='"+imageHeight+"' border='0' alt='Gro&szlig;e Ansicht' /></a></td>\n"
				+"</tr>\n"
				+"<tr>\n"
				+"<td>\n"
				+"</td>\n"
				+"<td>\n"
				+"</td>\n"
				+"<td>\n"
				+"</td>\n"
				+"</tr>\n"
				+"</table>\n"
				+"</body>\n"
				+"</html>\n";

	if(typeof(imageWindow)!="undefined" && !imageWindow.closed)imageWindow.close();
	imageWindow = window.open("#","BildAnsicht","width="+imageWidth+",height="+imageHeight+",left='0',top='0',scrollbars=no");
	imageWindow.document.write(strPageContent);
	imageWindow.focus();
}
