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('<html><head><title>Anglija.lt</title></head><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"><a href="javascript:window.close()"><img src="'+imagesrc+'" alt="Uždaryti" border="0"></a></td></tr></table></div></body></html>')
popwin.document.close()
}