function PopupImage(img) {
//~ img = "012_kroatien_portraits/04_peter_und_kathi.jpg";
	img2 = new Image();
	img2.src = img;
	img_w = img2.width;// + deltaw;
	img_h = img2.height;// + deltah;
	xpos = screen.width / 2 - img_w / 2;
	ypos = screen.height / 2 - img_h / 2;

	site_title = "LAIMIN - suesses nichtstun - RESTAURANT - BAR";
	//~ pattern matching für den titel
	var title_pattern = /(\d+)_(.+)\/(\d+)_(.+)\..+/;
	
	var result = img.match(title_pattern);
	
	if (result != null) {
		page_number = result[1];
		section = result[2].replace(/_/g," ");
		img_number = result[3];
		img_title = result[4].replace(/_/g," ");
		site_title += " - page" + page_number + " - " + section + " - image" + img_number + " - " + img_title; 
	}
	//~ alert(site_title);

//~ Version mit resize

	if(navigator.userAgent.toUpperCase().indexOf("MSIE") != -1) {
		deltah=32;
		deltaw=13;
	}
	else if(navigator.userAgent.toUpperCase().indexOf("GECKO") != -1) {
		deltah=43;
		deltaw=24;
	}
	else if(navigator.userAgent.toUpperCase().indexOf("OPERA") != -1){
		deltah=32;
		deltaw=14;
	}

	if(navigator.userAgent.toUpperCase().indexOf("OPERA") != -1) ypos = 20;
	//~ Version ohne resize
	//~ w=open("",'image','left='+xpos+',top='+ypos+',width='+img_w+',height='+img_h+',toolbar=no,scrollbars=no,menubar=no,location=no,resizable=yes');	
	//~ Version mit resize
	w=open("",'image','left=100,top=150,width=1,height=1,toolbar=no,scrollbars=no,menubar=no,location=no,resizable=yes');
	w.document.open();
	w.document.write("<HTML><HEAD><TITLE>"+site_title+"</TITLE></HEAD>");
	w.document.write("<SCRIPT language=javascript>function checkSize() {if (document.images[0].complete){  window.resizeTo(document.images[0].width+"+deltaw+",document.images[0].height+"+deltah+"); window.focus();}else{ setTimeout('check()',250) } }</"+"SCRIPT>");
	//~ Version mit resize
	w.document.write("<BODY BGCOLOR=B9C851 onload='checkSize();' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
	//~ Version ohne resize
	//~ w.document.write("<BODY onblur=\"window.setTimeout('window.close()',700);\" BGCOLOR=A6A6A6 leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
	w.document.write("<BODY BGCOLOR=B9C851 leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
	w.document.write("<a href=\"javascript:window.close();\"><IMG src='"+img+"' border=0></a>");
	w.document.write("");
	w.document.write("</BODY></HTML>");
	w.document.close();
}
