		
		function openWin(myImage,w,h,title,comments) {
		//alert(myImage+w+h);
		//alert("width="+w+",height="+h);
		
		win1 = open("","","width="+w+",height="+(h+25)+",resizable=yes,top=0");
		win1.document.writeln("<HTML><HEAD><TITLE>"+title+" copyright Geoconiglio</TITLE>");
		win1.document.writeln("<LINK href=..//birding.css type=text/css rel=stylesheet></HEAD>");
		win1.document.writeln("<BODY topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0>");
		win1.document.writeln("<TABLE style=MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px; MARGIN-RIGHT: 0px; MARGIN-LEFT: 0px border=1 cellpadding=0 cellspacing=0 width="+w+">");
		win1.document.writeln("<TR><TD height="+h+">");
		win1.document.writeln("<IMG SRC="+myImage+">");
		win1.document.writeln("</TD></TR>");		
		win1.document.writeln("<TR><TD align=center height=20 class=birddesc>"+comments+"</TD></TR></TABLE></BODY></HTML>");				
		
		
	
		
		
		}
