function popimage(imagesrc,winwidth,winheight){
var winl = (screen.width - winwidth) / 2;
var wint = (screen.height - winheight) / 2;
var look='width='+winwidth+',height='+winheight+',top='+wint+',left='+winl+''
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>Archeologija - galerija</title><body leftmargin="0" bottommargin="0" marginheight="0" marginwidth="0" rightmargin="0" topmargin="0" bgcolor="#ffffff"><div align="center"><table border="0" cellpadding="0" cellspacing="0" height="100%"><tr><td valign="middle" align="center"><img src="'+imagesrc+'" alt="" border="0"></td></tr></table></div></body>')
popwin.document.close()
}
