function win(url, title, w, h) {
	var properties = "left=0,top=0,resizable=yes";
	var needscroll = 0;
	if ( w > screen.width ) {
		w = screen.width;
		needscroll = 1;
	}
	if ( h > screen.height ) {
		h = screen.height;
		needscroll = 1;
	}
	if (1 == needscroll) {
		properties += ",scrollbars=yes";
	}
	properties += ",height="+h+",width="+w;
	wnd=window.open("","",properties);
	wnd.document.writeln("<html><head><title>" + title + " &#169 2001 Schwaegler Family Tree Farm</title></head>");
	wnd.document.writeln("<body bgcolor=#000000 text=#ffffff onblur=\"window.close()\" marginheight=0 topmargin=0 marginwidth=0 leftmargin=0 style=\"margin:0px\">");
	wnd.document.writeln("<center><img src=\"" + url + "\" alt=\"" + title + "\" ></center>");
	wnd.document.writeln("</body></html>");
}

