function showpic(kepnev,cim){
	kepwin=window.open("","kepwin","maximize=no, status=no, menu=no, toolbar=no, width=400, height=400");
	kepwin.document.open()
	kepwin.document.writeln("<html><title>" + cim + "</title>");
	kepwin.document.writeln("<Body topmargin='0' leftmargin='0' style='margin:0px; margin-right:0px;margin-left:0px;' marginwidth='0' marginheight='0'>");
	kepwin.document.writeln("<a href=\"javascript:window.close();\"><image border=0 src='" + kepnev + "'></a>");
	kepwin.document.writeln("</body></html>");
	kepwin.document.close()
	kepwin.focus();
}
