<!--
var imageselection = false;

function imageWindowOpen(imageWindow,mywidth,myheight)
{   imageWindowClose();
	imageselection = true;
	var myStr="imageselect=window.open('','fotos','scrollbars=yes,resizable=yes,width="+mywidth+",height="+myheight+",left=150,top=20')";
	eval(myStr);
	imageselect.document.open();
	with (imageselect.document){
	write('<html><head><title>WIRTSHAUS IM MARSTALL - Der Treffpunkt in Winsen (Luhe) - Restaurant, Cafe und Partyservice - Raum Hamburg und Nordheide</title></head><body bgcolor="#9F0000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%"><tr><td align="center"><img src="');
	write(imageWindow);
	write('"></td></tr></table></body></html>');
	}
	imageselect.document.close()
}

function imageWindowClose()
{	if (imageselection == true)
	   {if (!imageselect.closed){imageselect.close()}}
}

window.onunload=imageWindowClose
//-->
