function popup(foto,szer,wys,okno)
{
config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+szer+',height='+wys+'scrollbars=no,resizable=no';
var pop = window.open ("",okno,config);
pop.document.write('<html><head></head><body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0"> <img border=0 src="'+foto+'" onClick="window.close()" style="cursor:hand"> </body></html>');
pop.document.close();
}