function openPictureWindow(imageName,imageWidth,imageHeight,alt)
{
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight);
	newWindow.document.open();
	newWindow.document.write('<?xml version="1.0"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml">');
	newWindow.document.write('<html><head><title>'+alt+'</title><link rel="stylesheet" type="text/css" href="/style_popup.css">');
	newWindow.document.write('</head><body onBlur="self.close()">');
	newWindow.document.write('<img onLoad="fitWindowSize()" src='+imageName+' alt="'+alt+'"/><br/>');
	newWindow.document.write('<p>click in other window to close this detail view</p>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function openMapWindow(x,y,alt)
{
	newWindow = window.open("","newWindow","width=250,height=130");
	newWindow.document.open();
	newWindow.document.write('<HTML><head><TITLE>'+alt+'</TITLE><link rel="stylesheet" type="text/css" href="/style.css">');
	newWindow.document.write('</head><BODY align="center" onBlur="self.close()" bbgcolor="#000000" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" >');
	newWindow.document.write('<div id="karte_root" style="position:relative;top:auto;left:auto;width:240px; height:119px"><img id="karte" style="position:absolute; top: auto; left: auto;" alt="map of the world" property="" src="/images/components/Locations/world_map.jpg"/><img id="marke" style="position:absolute; top:');
	newWindow.document.write(y);
	newWindow.document.write('px; left:');
	newWindow.document.write(x);
	newWindow.document.write('px; width:8px; height:8px;" src="/images/components/Locations/point.gif" border="0"/></div>');
	newWindow.document.write('<div align="center">click on other window to close map</dev>');
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
	newWindow.focus();
}