function popup(file) {	
	var nw = window.open(file, 'Fototgalerie', 'menubar=no,resizable=yes');
	nw.onclick = function() {
		try
		{
			this.close();
		}
		catch(e)
		{
			window.close();
		}
	}
}
