var strPopup;		/* darf keinen startwert haben !!! */

function fncImagePopup(strImage) {
   	  strPopup = window.open("details.php?img="+ strImage +"","Details_Fenster","width=200,height=200,left=400,top=400,scrollbars=yes,resizable=yes");
}

/*** onUnload - function ***/
function fncImagePopupClose() {
	if(strPopup) {				// wird nur durchlaufen wenn fenster mind. einmal offen gewesen
		if(!strPopup.closed) {	// hat wert 'false', wenn fenster bereits zu
			strPopup.close();
		} else if(strPopup.closed) {	// hat wert 'true' wenn fenster noch offen
			//alert('Schon zu!!!');
}	}	}


function fncFlashPopup(strUrl,fileName,intWidth,intHeight) {
   	  strPopup = window.open(strUrl+"?fileName="+fileName+"&imgWidth="+intWidth+ "&imgHeight="+intHeight,"Flash_Fenster","width="+intWidth+",height="+intHeight+",left=400,top=400,scrollbars=no,resizable=no");
}

