// Script fuer 	Presselisten-Photo-Popups
// **************************************

function showPhoto(url, width, height)
{
 var property = "left=100,top=50,scrollbars=0,width="+width+",height="+height;
 var winName = "photoWindow"+width+""+height;
 var win = window.open (url, winName, property);
 win.focus();
}
